diff --git a/doc/test.dox b/doc/test.dox
index ac8ff9da4a095b7c62feb518a32269a49f50e158..bcf2472160c34bdd5cfacc619b5a4ef639cc671f 100644
--- a/doc/test.dox
+++ b/doc/test.dox
@@ -15,6 +15,7 @@
 	- \ref cpuTimeTest "CPU times by SVN"
 	- \ref decFiltTest "IOP Decimation Filter Test"
 	- \ref daqFiltTest "DAQ (daqLib) Decimation Filter Test"
+	- \ref sdf "Setpoint MonitoringTest"
 \section testpage2 RCG Component Testing 
 \subsection iot I/O Components
 	- \ref ipcTestData "RCG IPC Test"
diff --git a/src/epics/seq/main.c b/src/epics/seq/main.c
index 95dfda14f47a2362f98cbc2ce7f474558b69bed3..250b930e7a0972c37972bb28a8bac0242d1189b1 100644
--- a/src/epics/seq/main.c
+++ b/src/epics/seq/main.c
@@ -13,7 +13,10 @@ of this distribution.
 // TODO:
 // Add command error checking, command out of range, etc.
 //	- Particularly returns from functions.
+// Freeze table updates when change selections are made. 
+// Save overwrite file after table modification.
 // File save on exit.
+// Switch monitor bit in unmon table.
 
 /*
  * Main program for demo sequencer
@@ -90,6 +93,7 @@ typedef struct CDS_CD_TABLE {
 	int filterswitch;
 	int error;
 	char errMsg[64];
+	int chFlag;
 } CDS_CD_TABLE;
 
 /// Structure for creating/holding filter module switch settings.
@@ -111,6 +115,7 @@ typedef struct SET_ERR_TABLE {
 	char timeset[64];
 	char diff[64];
 	int sigNum;
+	int chFlag;
 } SET_ERR_TABLE;
 
 
@@ -151,12 +156,13 @@ int writeTable2File(char *,int,CDS_CD_TABLE *);
 int savesdffile(int,int,char *,char *,char *,char *,char *,dbAddr,dbAddr); 
 int createSortTableEntries(int);
 int reportSetErrors(char *,int,SET_ERR_TABLE *,int);
-int spChecker(int);
+int spChecker(int,int,char *);
 void newfilterstats(int);
 int writeEpicsDb(int,CDS_CD_TABLE *,int);
-int readConfig( char *,char *,int);
+int readConfig( char *,char *,int,char *);
 void dbDumpRecords(DBBASE *);
 int parseLine(char *,char *,char *,char *,char *,char *,char *);
+int modifyTable(int,SET_ERR_TABLE *);
 
 // End Header **********************************************************************************************************
 //
@@ -177,7 +183,7 @@ char psd[6][64];
 #define IS_A_SPACE 	1
 #define IS_A_QUOTE	2
 
-	while (*s != 0) {
+	while (*s != 0 && *s != 10) {
 		mychar = IS_A_ALPHA_NUM;
 		if (*s == '\t') *s = ' ';
 		if (*s == ' ') mychar = IS_A_SPACE;
@@ -192,7 +198,7 @@ char psd[6][64];
 				lastwasspace = 0;
 				break;
 			case IS_A_SPACE:
-				if(inQuotes) {
+				if(inQuotes == 1) {
 					strncat(psd[wc],s,1);
 				} else {
 					lastwasspace = 1;
@@ -217,6 +223,42 @@ char psd[6][64];
 	return(wc);
 }
 
+int decodeChangeSelect(int selNum, int page, int totalItems, SET_ERR_TABLE *dcsErrTable, int selectCounter[])
+{
+	int selectBit = selNum / 100;
+	int selectLine = selNum % 100 - 1;
+	selNum += page * SDF_ERR_DSIZE;
+	selectLine += page * SDF_ERR_DSIZE;
+	if(selectLine < totalItems) {
+		switch (selectBit) {
+			case 0:
+				dcsErrTable[selectLine].chFlag ^= 2;
+				if(dcsErrTable[selectLine].chFlag & 2) selectCounter[0] ++;
+				else selectCounter[0] --;
+				if(dcsErrTable[selectLine].chFlag & 4) {
+					dcsErrTable[selectLine].chFlag &= ~(4);
+					selectCounter[1] --;
+				}
+				break;
+			case 1:
+				dcsErrTable[selectLine].chFlag ^= 4;
+				if(dcsErrTable[selectLine].chFlag & 4) selectCounter[1] ++;
+				else selectCounter[1] --;
+				if(dcsErrTable[selectLine].chFlag & 2) {
+					dcsErrTable[selectLine].chFlag &= ~(2);
+					selectCounter[0] --;
+				}
+				break;
+			case 2:
+				dcsErrTable[selectLine].chFlag ^= 8;
+				if(dcsErrTable[selectLine].chFlag & 8) selectCounter[2] ++;
+				else selectCounter[2] --;
+				break;
+			default:
+				break;
+		}
+	}
+}
 
 /// Common routine to check file CRC.
 ///	@param[in] *fName	Name of file to check.
@@ -465,7 +507,7 @@ int writeTable2File(char *filename, 		///< Name of file to write
         FILE *csFile;
         char filemsg[128];
 	char timestring[128];
-    // Write out local monitoring table as spap file.
+    // Write out local monitoring table as snap file.
         errno=0;
         csFile = fopen(filename,"w");
         if (csFile == NULL)
@@ -532,6 +574,38 @@ int writeTable2File(char *filename, 		///< Name of file to write
         }
         return(0);
 }
+
+int appendAlarms2File(
+		char *sdfdir, 		///< Directory to save file in.
+		char *currentload	///< Name of file, less directory info.
+		)
+{
+char sdffilename[256];
+char alarmfilename[256];
+FILE *cdf;
+FILE *adf;
+char line[128];
+char errMsg[128];
+int lderror = 0;
+	sprintf(sdffilename,"%s%s.snap",sdfdir,currentload);
+	sprintf(alarmfilename,"%s%s_alarms.snap",sdfdir,currentload);
+	adf = fopen(alarmfilename,"r");
+	if(adf != NULL) {
+		cdf = fopen(sdffilename,"a");
+		if(cdf == NULL) {
+			sprintf(errMsg,"New SDF request ERROR: FILE %s DOES NOT EXIST\n",sdffilename);
+			logFileEntry(errMsg);
+			lderror = 4;
+			return(lderror);
+		}
+		while(fgets(line,sizeof line,adf) != NULL)
+		{
+			fprintf(cdf,"%s",line);
+		}
+		fclose(cdf);
+	}
+	fclose(adf);
+}
 // Savetype
 #define SAVE_TABLE_AS_SDF	1
 #define SAVE_TABLE_AS_BURT	2
@@ -541,6 +615,8 @@ int writeTable2File(char *filename, 		///< Name of file to write
 #define SAVE_TIME_NOW		1
 #define SAVE_OVERWRITE		2
 #define SAVE_AS			3
+#define SAVE_BACKUP		4
+#define SAVE_OVERWRITE_TABLE	5
 
 /// Routine used to decode and handle BURT save requests.
 int savesdffile(int saveType, 		///< Save file format definition.
@@ -581,6 +657,17 @@ char shortfilename[64];
 			sprintf(shortfilename,"%s",currentload);
 			printf("File to save is OVERWRITE: %s\n",filename);
 			break;
+		case SAVE_BACKUP:
+			sprintf(filename,"%s%s_%d%02d%02d_%02d%02d%02d.snap",sdfdir,currentload,
+			(mytime->tm_year - 100),  (mytime->tm_mon + 1),  mytime->tm_mday,  mytime->tm_hour,  mytime->tm_min,  mytime->tm_sec);
+			sprintf(shortfilename,"%s",currentload);
+			printf("File to save is BACKUP: %s\n",filename);
+			break;
+		case SAVE_OVERWRITE_TABLE:
+			sprintf(filename,"%s%s.snap",sdfdir,currentload);
+			sprintf(shortfilename,"%s",currentload);
+			printf("File to save is BACKUP OVERWRITE: %s\n",filename);
+			break;
 		case SAVE_AS:
 			sprintf(filename,"%s%s_%s.snap",sdfdir,saveasfile,ftype);
 			sprintf(shortfilename,"%s_%s",saveasfile,ftype);
@@ -714,7 +801,7 @@ int notMon = 0;
 	for(jj=0;jj<numEntries;jj++)
 	{
 		if(!cdTable[jj].initialized) {
-			// printf("Chan %s not init %d %d %d\n",cdTable[jj].chname,cdTable[jj].initialized,jj,numEntries);
+			printf("Chan %s not init %d %d %d\n",cdTable[jj].chname,cdTable[jj].initialized,jj,numEntries);
 			if(chNotInit < SDF_ERR_TSIZE) sprintf(uninitChans[chNotInit].chname,"%s",cdTable[jj].chname);
 			chNotInit ++;
 		}
@@ -736,6 +823,90 @@ int notMon = 0;
 	return(notMon);
 }
 
+/// Common routine to load monitoring tables into EPICS channels for MEDM screen.
+int reportTableEntries(char *pref,			///< Channel name prefix from EPICS environment. 
+		     	int numEntries, 			///< Number of entries in table to be reported.
+		     	int page)				///< Which page of 40 to display.
+{
+int ii;
+dbAddr saddr;
+dbAddr baddr;
+dbAddr maddr;
+dbAddr taddr;
+dbAddr daddr;
+dbAddr laddr;
+char s[64];
+char s1[64];
+char s2[64];
+char s3[64];
+char s4[64];
+char sl[64];
+char sb[64];
+char se[64];
+long status;
+char clearString[62] = "                       ";
+int flength = 62;
+int rc = 0;
+int myindex = 0;
+int numDisp = 0;
+int lineNum = 0;
+int mypage = 0;
+int lineCtr = 0;
+
+	// Get the page number to display
+	mypage = page;
+	// Calculat start index to the diff table.
+	myindex = page *  SDF_ERR_DSIZE;
+	// If index is > number of entries in the table, then page back.
+        if(myindex > numEntries) {
+		mypage = numEntries / SDF_ERR_DSIZE;
+		myindex = mypage *  SDF_ERR_DSIZE;
+        }
+	// Set the stop index to the diff table.
+	rc = myindex + SDF_ERR_DSIZE;
+	// If stop index beyond last diff table entry, set it to last entry.
+        if(rc > numEntries) rc = numEntries;
+	numDisp = rc - myindex;
+
+	status = getEpicsSettings(numEntries);
+	// Fill in table entries.
+	for(ii=myindex;ii<rc;ii++)
+	{
+		sprintf(s, "%s_%s_STAT%d", pref,"SDF_SP", lineNum);
+		status = dbNameToAddr(s,&saddr);
+		status = dbPutField(&saddr,DBR_UCHAR,&cdTable[ii].chname,flength);
+
+		if(cdTable[ii].datatype == SDF_NUM) {
+			sprintf(sb,"%.10lf",cdTable[ii].data.chval);
+			sprintf(se,"%.10lf",cdTableP[ii].data.chval);
+		} else {
+			sprintf(sb,"%s",cdTable[ii].data.strval);
+			sprintf(se,"%s",cdTableP[ii].data.strval);
+		}	
+
+		sprintf(s1, "%s_%s_STAT%d_BURT", pref,"SDF_SP", lineNum);
+		status = dbNameToAddr(s1,&baddr);
+		status = dbPutField(&baddr,DBR_UCHAR,sb,flength);
+
+		sprintf(s2, "%s_%s_STAT%d_LIVE", pref,"SDF_SP", lineNum);
+		status = dbNameToAddr(s2,&maddr);
+		status = dbPutField(&maddr,DBR_UCHAR,se,flength);
+
+		sprintf(s2, "%s_SDF_BITS_%d", pref, lineNum);
+                status = dbNameToAddr(s2,&daddr);
+                status = dbPutField(&daddr,DBR_ULONG,&cdTable[ii].mask,1);
+
+		sprintf(sl, "%s_SDF_LINE_%d", pref, lineNum);
+		lineNum ++;
+		lineCtr = ii + 1;;
+                status = dbNameToAddr(sl,&laddr);
+                status = dbPutField(&laddr,DBR_LONG,&lineCtr,1);
+	}
+	// Return the number of the display page.
+	return(mypage);
+}
+
+
 /// Common routine to load monitoring tables into EPICS channels for MEDM screen.
 int reportSetErrors(char *pref,			///< Channel name prefix from EPICS environment. 
 		     int numEntries, 			///< Number of entries in table to be reported.
@@ -765,6 +936,7 @@ int numDisp = 0;
 int lineNum = 0;
 int mypage = 0;
 int lineCtr = 0;
+int zero = 0;
 
 
 	// Get the page number to display
@@ -805,6 +977,10 @@ int lineCtr = 0;
 		status = dbNameToAddr(s4,&daddr);
 		status = dbPutField(&daddr,DBR_UCHAR,&setErrTable[ii].diff,flength);
 
+		sprintf(sl, "%s_SDF_BITS_%d", pref, lineNum);
+                status = dbNameToAddr(sl,&daddr);
+                status = dbPutField(&daddr,DBR_ULONG,&setErrTable[ii].chFlag,1);
+
 		sprintf(sl, "%s_SDF_LINE_%d", pref, lineNum);
 		lineNum ++;
 		lineCtr = ii + 1;;
@@ -836,6 +1012,10 @@ int lineCtr = 0;
 		status = dbNameToAddr(s4,&daddr);
 		status = dbPutField(&daddr,DBR_UCHAR,clearString,flength);
 
+		sprintf(sl, "%s_SDF_BITS_%d", pref, ii);
+                status = dbNameToAddr(sl,&daddr);
+                status = dbPutField(&daddr,DBR_ULONG,&zero,1);
+
 		lineCtr ++;
 		sprintf(sl, "%s_SDF_LINE_%d", pref, ii);
 		status = dbNameToAddr(sl,&laddr);
@@ -854,7 +1034,7 @@ int lineCtr = 0;
 //	- Present Value
 //	- Time the present setting was applied.
 /// Setpoint monitoring routine.
-int spChecker(int monitorAll)
+int spChecker(int monitorAll,int wcVal, char *wcstring)
 {
    	int errCntr = 0;
 	dbAddr paddr;
@@ -881,6 +1061,7 @@ int spChecker(int monitorAll)
 	char diffB2L[64];
 	char swName[64];
 	double sdfdiff = 0.0;
+	char *ret;
 
 	// Check filter switch settings first
 	     errCntr = checkFilterSwitches(fmNum,monitorAll);
@@ -919,6 +1100,8 @@ int spChecker(int monitorAll)
 						localErr = 1;
 					}
 				}
+				if(localErr && wcVal  && (ret = strstr(cdTable[ii].chname,wcstring) == NULL))
+					localErr = 0;
 				// If a diff was found, then write info the EPICS setpoint diff table.
 				if(localErr)
 				{
@@ -934,6 +1117,8 @@ int spChecker(int monitorAll)
 					strcpy(localtimestring, ctime(&mtime));
 					localtimestring[strlen(localtimestring) - 1] = 0;
 					sprintf(setErrTable[errCntr].timeset, "%s", localtimestring);
+					if(cdTable[ii].mask) setErrTable[errCntr].chFlag |= 1;
+					else setErrTable[errCntr].chFlag &= ~(1);
 					errCntr ++;
 				}
 			}
@@ -941,24 +1126,54 @@ int spChecker(int monitorAll)
 	     }
 	return(errCntr);
 }
+int modifyTable(int numEntries,SET_ERR_TABLE modTable[])
+{
+int ii,jj;
+	for(ii=0;ii<numEntries;ii++)
+	{
+		if(modTable[ii].chFlag > 3) 
+		{
+			for(jj=0;jj<chNum;jj++)
+			{
+				if(strcmp(cdTable[jj].chname,modTable[ii].chname) == 0 && (modTable[ii].chFlag & 4)) {
+					if(cdTable[jj].datatype == SDF_NUM) cdTable[jj].data.chval = atof(modTable[ii].liveset);
+					else sprintf(cdTable[jj].data.strval,"%s",modTable[ii].liveset);
+				}
+				if(strcmp(cdTable[jj].chname,modTable[ii].chname) == 0 && (modTable[ii].chFlag & 8)) {
+					cdTable[jj].mask ^= 1;
+				}
+			}
+		}
+	}
+	return(0);
+}
 int resetSelectedValues(int errNum)
 {
 long status;
-int ln = errNum - 1;
-int ii = setErrTable[ln].sigNum;
-int jj;
+int ii;
+int sn;
+int sn1 = 0;
 dbAddr saddr;
 	
-	if(ii > SDF_MAX_TSIZE) {
-		jj = ii / SDF_MAX_TSIZE;
-		status = dbNameToAddr(cdTable[jj].chname,&saddr);
-		if(cdTable[jj].datatype == SDF_NUM) status = dbPutField(&saddr,DBR_DOUBLE,&cdTable[jj].data.chval,1);
-		else status = dbPutField(&saddr,DBR_STRING,&cdTable[jj].data.strval,1);
+	for(ii=0;ii<errNum;ii++)
+	{
+		if (setErrTable[ii].chFlag & 2)
+		{
+			sn = setErrTable[ii].sigNum;
+			if(sn > SDF_MAX_TSIZE) {
+				sn1 = sn / SDF_MAX_TSIZE;
+				sn %= SDF_MAX_TSIZE;
+			}
+			status = dbNameToAddr(cdTable[sn].chname,&saddr);
+			if(cdTable[sn].datatype == SDF_NUM) status = dbPutField(&saddr,DBR_DOUBLE,&cdTable[sn].data.chval,1);
+			else status = dbPutField(&saddr,DBR_STRING,&cdTable[sn].data.strval,1);
+
+			if(sn1) {
+				status = dbNameToAddr(cdTable[sn1].chname,&saddr);
+				status = dbPutField(&saddr,DBR_DOUBLE,&cdTable[sn1].data.chval,1);
+			}
+		}
 	}
-	ii = ii % SDF_MAX_TSIZE;
-	status = dbNameToAddr(cdTable[ii].chname,&saddr);
-	if(cdTable[ii].datatype == SDF_NUM) status = dbPutField(&saddr,DBR_DOUBLE,&cdTable[ii].data.chval,1);
-	else status = dbPutField(&saddr,DBR_STRING,&cdTable[ii].data.strval,1);
 	return(0);
 }
 
@@ -1033,6 +1248,7 @@ int writeEpicsDb(int numchans,		///< Number of channels to write
 						sprintf(unknownChans[chNotFound].liveset,"%s"," ");
 						sprintf(unknownChans[chNotFound].timeset,"%s"," ");
 						sprintf(unknownChans[chNotFound].diff,"%s"," ");
+						unknownChans[chNotFound].chFlag = 0;
 					}
 					chNotFound ++;
 				}
@@ -1075,9 +1291,11 @@ int writeEpicsDb(int numchans,		///< Number of channels to write
 /// Function to read BURT files and load data into local tables.
 int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 		char *sdfile, 		///< Name of the file to read.
-		int command)		///< Read file request type.
+		int command,		///< Read file request type.
+		char *alarmfile)
 {
 	FILE *cdf;
+	FILE *adf;
 	char c;
 	int ii;
 	int lock;
@@ -1120,6 +1338,7 @@ int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 			lderror = 4;
 			return(lderror);
 		}
+		adf = fopen(alarmfile,"w");
 		chNumP = 0;
 		alarmCnt = 0;
 		// Put dummy in s4 as this column may or may not exist.
@@ -1184,9 +1403,10 @@ int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 						// printf("Alarm set - %s = %f\n",cdTableP[chNumP].chname,cdTableP[chNumP].data.chval);
 					} else {
 						cdTableP[chNumP].datatype = SDF_STR;
-						strcpy(cdTableP[chNumP].data.strval,s3);
+						sprintf(cdTableP[chNumP].data.strval,"%s",s3);
 						// printf("Alarm set - %s = %s\n",cdTableP[chNumP].chname,cdTableP[chNumP].data.strval);
 					}
+					fprintf(adf,"%s %s %s\n",s1,s2,s3);
 				} 
 				if(!isalarm)
 				{
@@ -1198,10 +1418,13 @@ int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 						fmatch = 1;
 						if(cdTable[ii].datatype == SDF_STR || (!isdigit(s3[0]) && strncmp(s3,"-",1) != 0))
 						{
+							// s3[strlen(s3) - 1] = 0;
 							cdTableP[chNumP].datatype = SDF_STR;
-							strcpy(cdTableP[chNumP].data.strval,s3);
+							sprintf(cdTableP[chNumP].data.strval,"%s",s3);
 							if(command != SDF_LOAD_DB_ONLY)
-								strcpy(cdTable[ii].data.strval,cdTableP[chNumP].data.strval);
+							{
+								sprintf(cdTable[ii].data.strval,"%s",s3);
+							}
 						} else {
 							cdTableP[chNumP].datatype = SDF_NUM;
 							cdTableP[chNumP].data.chval = atof(s3);
@@ -1250,6 +1473,7 @@ int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 				if(chNumP >= SDF_MAX_CHANS)
 				{
 					fclose(cdf);
+					fclose(adf);
 					sprintf(errMsg,"Number of channels in %s exceeds program limit\n",sdfile);
 					logFileEntry(errMsg);
 					lderror = 4;
@@ -1258,6 +1482,7 @@ int readConfig( char *pref,		///< EPICS channel prefix from EPICS environment.
 		   	}
 		}
 		fclose(cdf);
+		fclose(adf);
 		printf("Loading epics %d\n",chNumP);
 		lderror = writeEpicsDb(chNumP,cdTableP,command);
 		// if(!fmtInit) newfilterstats(fmNum);
@@ -1392,6 +1617,7 @@ int main(int argc,char *argv[])
 	dbAddr fulldbcntaddr;
 	dbAddr monchancntaddr;
 	dbAddr tablesortreqaddr;
+	dbAddr wcreqaddr;
 	dbAddr chnotfoundaddr;
 	dbAddr chnotinitaddr;
 	dbAddr sorttableentriesaddr;
@@ -1400,6 +1626,7 @@ int main(int argc,char *argv[])
 	dbAddr edbloadedaddr;
 	dbAddr savecmdaddr;
 	dbAddr saveasaddr;
+	dbAddr wcstringaddr;
 	dbAddr savetypeaddr;
 	dbAddr saveoptsaddr;
 	dbAddr savefileaddr;
@@ -1407,6 +1634,7 @@ int main(int argc,char *argv[])
 	dbAddr daqmsgaddr;
 	dbAddr coeffmsgaddr;
 	dbAddr resetoneaddr;
+	dbAddr selectaddr[3];
 	// Initialize request for file load on startup.
 	int sdfReq = SDF_LOAD_PARTIAL;
 	long status;
@@ -1424,6 +1652,7 @@ int main(int argc,char *argv[])
 	int setChans = 0;
 	char tsrString[64];
 	int tsrVal = 0;
+	int wcVal = 0;
 	int monFlag = 0;
 	int sdfSaveReq = 0;
 	int saveType = 0;
@@ -1438,6 +1667,15 @@ int main(int argc,char *argv[])
 	struct stat st = {0};
 	int reqValid = 0;
 	int numReport = 0;
+	int resetByte;
+	int resetBit;
+	int confirmVal;
+	int myexp;
+	int selectCounter[4] = {0,0,0,0};
+	int freezeTable = 0;
+	int zero = 0;
+	char backupName[64];
+	int lastTable = 0;
 
     if(argc>=2) {
         iocsh(argv[1]);
@@ -1455,8 +1693,10 @@ int main(int argc,char *argv[])
 	if(stat(logdir, &st) == -1) mkdir(logdir,0777);
 	// strcat(sdf,"_safe");
 	char sdfile[256];
+	char sdalarmfile[256];
 	char bufile[256];
 	char saveasfilename[128];
+	char wcstring[64];
 	printf("My prefix is %s\n",pref);
 	sprintf(sdfile, "%s%s%s", sdfDir, sdf,".snap");					// Initialize with BURT_safe.snap
 	sprintf(bufile, "%s%s", sdfDir, "fec.snap");					// Initialize table dump file
@@ -1506,6 +1746,10 @@ sleep(5);
 	char tsrname[256]; sprintf(tsrname, "%s_%s", pref, "SDF_SORT");			// SDF Table sorting request
 	status = dbNameToAddr(tsrname,&tablesortreqaddr);
 
+	char wcname[256]; sprintf(wcname, "%s_%s", pref, "SDF_WILDCARD");			// SDF Table sorting request
+	status = dbNameToAddr(wcname,&wcreqaddr);
+	status = dbPutField(&wcreqaddr,DBR_LONG,&zero,1);		// Init to zero.
+
 	char cnfname[256]; sprintf(cnfname, "%s_%s", pref, "SDF_DROP_CNT");		// Number of channels not found.
 	status = dbNameToAddr(cnfname,&chnotfoundaddr);
 
@@ -1528,6 +1772,10 @@ sleep(5);
 	status = dbNameToAddr(saveasname,&saveasaddr);			// Get Address.
 	status = dbPutField(&saveasaddr,DBR_STRING,"default",1);	// Set as dummy 'default'
 
+	char wcstringname[256]; sprintf(wcstringname, "%s_%s", pref, "SDF_WC_STR");	// SDF Save as file name.
+	status = dbNameToAddr(wcstringname,&wcstringaddr);			// Get Address.
+	status = dbPutField(&wcstringaddr,DBR_STRING,"",1);		// Set as dummy 'default'
+
 	char savetypename[256]; sprintf(savetypename, "%s_%s", pref, "SDF_SAVE_TYPE");	// SDF Save file type.
 	status = dbNameToAddr(savetypename,&savetypeaddr);
 
@@ -1548,12 +1796,14 @@ sleep(5);
 	char modcoefffilemsg[256]; sprintf(modcoefffilemsg, "%s_%s", pref, "MSG");	// Record to write if Coeff file changed.
 	status = dbNameToAddr(modcoefffilemsg,&coeffmsgaddr);
 
+
 	sprintf(timechannel,"%s_%s", pref, "TIME_STRING");
 	// printf("timechannel = %s\n",timechannel);
 	sprintf(reloadtimechannel,"%s_%s", pref, "SDF_RELOAD_TIME");			// Time of last BURT reload
 	status = dbNameToAddr(reloadtimechannel,&reloadtimeaddr);
 
-	unsigned int pageNum = 0;
+	int pageNum = 0;
+	int pageNumSet = 0;
 	dbAddr pagereqaddr;
         char pagereqname[256]; sprintf(pagereqname, "%s_%s", pref, "SDF_PAGE"); // SDF Save command.
         status = dbNameToAddr(pagereqname,&pagereqaddr);                // Get Address.
@@ -1563,6 +1813,23 @@ sleep(5);
 	status = dbNameToAddr(resetOneName,&resetoneaddr);
 	status = dbPutField(&resetoneaddr,DBR_LONG,&resetNum,1);
 
+	char selectName[256]; 
+	sprintf(selectName, "%s_%s", pref, "SDF_SELECT_SUM0");	// SDF reset one value.
+	status = dbNameToAddr(selectName,&selectaddr[0]);
+	status = dbPutField(&selectaddr[0],DBR_LONG,&resetNum,1);
+	sprintf(selectName, "%s_%s", pref, "SDF_SELECT_SUM1");	// SDF reset one value.
+	status = dbNameToAddr(selectName,&selectaddr[1]);
+	status = dbPutField(&selectaddr[1],DBR_LONG,&resetNum,1);
+	sprintf(selectName, "%s_%s", pref, "SDF_SELECT_SUM2");	// SDF reset one value.
+	status = dbNameToAddr(selectName,&selectaddr[2]);
+	status = dbPutField(&selectaddr[2],DBR_LONG,&resetNum,1);
+
+	dbAddr confirmwordaddr;
+	char confirmwordname[64]; 
+	sprintf(confirmwordname, "%s_%s", pref, "SDF_CONFIRM");	// Record to write if Coeff file changed.
+	status = dbNameToAddr(confirmwordname,&confirmwordaddr);
+	status = dbPutField(&confirmwordaddr,DBR_LONG,&resetNum,1);
+
 	dbDumpRecords(*iocshPpdbbase);
 
 	// Initialize DAQ and COEFF file CRC checksums for later compares.
@@ -1583,6 +1850,7 @@ sleep(5);
 		status = dbGetField(&sdfname_addr,DBR_STRING,sdf,&ropts,&nvals,NULL);
 		//  Create full filename including directory and extension.
 		sprintf(sdfile, "%s%s%s", sdfDir, sdf,".snap");
+		sprintf(sdalarmfile, "%s%s%s", sdfDir, sdf,"_alarms.snap");
 		// Check if file name != to one presently loaded
 		if(strcmp(sdf,loadedSdf) != 0) burtstatus |= 1;
 		else burtstatus &= ~(1);
@@ -1596,7 +1864,7 @@ sleep(5);
 			status = dbPutField(&reload_addr,DBR_LONG,&ropts,1);	// Clear the read request.
 			reqValid = 1;
 			if(reqValid) {
-				rdstatus = readConfig(pref,sdfile,request);
+				rdstatus = readConfig(pref,sdfile,request,sdalarmfile);
 				if (rdstatus) burtstatus |= rdstatus;
 				else burtstatus &= ~(6);
 				if(burtstatus < 4) {
@@ -1633,7 +1901,6 @@ sleep(5);
 					// Sort channels for data reporting via the MEDM table.
 					noMon = createSortTableEntries(chNum);
 					// Calculate and report number of channels NOT being monitored.
-					// noMon = chNum - chMon;
 					status = dbPutField(&monchancntaddr,DBR_LONG,&noMon,1);
 					status = dbPutField(&alrmchcountaddr,DBR_LONG,&alarmCnt,1);
 					// Report number of channels in BURT file that are not in local database.
@@ -1680,40 +1947,126 @@ sleep(5);
 		// Check present settings vs BURT settings and report diffs.
 		// Check if MON ALL CHANNELS is set
 		status = dbGetField(&monflagaddr,DBR_LONG,&monFlag,&ropts,&nvals,NULL);
+		status = dbGetField(&wcstringaddr,DBR_STRING,wcstring,&ropts,&nvals,NULL);
+		status = dbGetField(&wcstringaddr,DBR_STRING,saveasfilename,&ropts,&nvals,NULL);
 		// Call the diff checking function.
-		sperror = spChecker(monFlag);
+		if(!freezeTable)
+			sperror = spChecker(monFlag,wcVal,wcstring);
 		// Report number of diffs found.
 		status = dbPutField(&sperroraddr,DBR_LONG,&sperror,1);
 		// Table sorting and presentation
 		status = dbGetField(&tablesortreqaddr,DBR_USHORT,&tsrVal,&ropts,&nvals,NULL);
-		status = dbGetField(&pagereqaddr,DBR_USHORT,&pageNum,&ropts,&nvals,NULL);
+		status = dbGetField(&wcreqaddr,DBR_USHORT,&wcVal,&ropts,&nvals,NULL);
+		status = dbGetField(&pagereqaddr,DBR_LONG,&pageNumSet,&ropts,&nvals,NULL);
+		status = dbGetField(&confirmwordaddr,DBR_LONG,&confirmVal,&ropts,&nvals,NULL);
+		if(pageNumSet != 0) {
+			pageNum += pageNumSet;
+			if(pageNum < 0) pageNum = 0;
+			status = dbPutField(&pagereqaddr,DBR_LONG,&ropts,1);                // Init to zero.
+		}
 		switch(tsrVal) { 
 			case 0:
+				if(lastTable) {
+					confirmVal = 0;
+					selectCounter[0] = 0;
+					selectCounter[1] = 0;
+					selectCounter[2] = 0;
+					for(ii=0;ii<sperror;ii++) {
+						 setErrTable[ii].chFlag = 0;
+					}
+				}
 				numReport = reportSetErrors(pref, sperror,setErrTable,pageNum);
 				status = dbPutField(&sorttableentriesaddr,DBR_LONG,&sperror,1);
 				status = dbGetField(&resetoneaddr,DBR_LONG,&resetNum,&ropts,&nvals,NULL);
 				if(resetNum) {
-					resetNum += pageNum * SDF_ERR_DSIZE;
-					if(resetNum <= sperror) status = resetSelectedValues(resetNum);
+					decodeChangeSelect(resetNum, numReport, sperror, setErrTable,selectCounter);
 					resetNum = 0;
 					status = dbPutField(&resetoneaddr,DBR_LONG,&resetNum,1);
 				}
+				if(confirmVal) {
+					if(selectCounter[0] && (confirmVal & 2)) status = resetSelectedValues(sperror);
+					if(selectCounter[1] || selectCounter[2]) {
+						// Save present table as timenow.
+						status = dbGetField(&loadedfile_addr,DBR_STRING,backupName,&ropts,&nvals,NULL);
+						printf("BACKING UP: %s\n",backupName);
+						savesdffile(SAVE_TABLE_AS_SDF,SAVE_BACKUP,sdfDir,modelname,sdfile,saveasfilename,backupName,savefileaddr,savetimeaddr);
+						// Overwrite the table with new values
+						status = modifyTable(sperror,setErrTable);
+						// Overwrite file
+						savesdffile(SAVE_TABLE_AS_SDF,SAVE_OVERWRITE_TABLE,sdfDir,modelname,sdfile,saveasfilename,backupName,savefileaddr,savetimeaddr);
+						status = appendAlarms2File(sdfDir,backupName);
+					}
+					confirmVal = 0;
+					selectCounter[0] = 0;
+					selectCounter[1] = 0;
+					selectCounter[2] = 0;
+					status = dbPutField(&confirmwordaddr,DBR_LONG,&confirmVal,1);
+					for(ii=0;ii<sperror;ii++) {
+						 setErrTable[ii].chFlag = 0;
+					}
+				}
+				lastTable = 0;
 				break;
 			case 1:
 				numReport = reportSetErrors(pref, chNotFound,unknownChans,pageNum);
 				status = dbPutField(&sorttableentriesaddr,DBR_LONG,&chNotFound,1);
+				lastTable = 1;
 				break;
 			case 2:
 				numReport = reportSetErrors(pref, chNotInit, uninitChans,pageNum);
 				status = dbPutField(&sorttableentriesaddr,DBR_LONG,&chNotInit,1);
+				lastTable = 2;
 				break;
 			case 3:
+				if(lastTable != 3) {
+					confirmVal = 0;
+					selectCounter[0] = 0;
+					selectCounter[1] = 0;
+					selectCounter[2] = 0;
+					for(ii=0;ii<noMon;ii++) {
+						 unMonChans[ii].chFlag = 0;
+					}
+				}
 				numReport = reportSetErrors(pref, noMon, unMonChans,pageNum);
+				status = dbGetField(&resetoneaddr,DBR_LONG,&resetNum,&ropts,&nvals,NULL);
+				if(resetNum > 200) {
+					decodeChangeSelect(resetNum, numReport, noMon, unMonChans,selectCounter);
+				}
+				if(resetNum) {
+					resetNum = 0;
+					status = dbPutField(&resetoneaddr,DBR_LONG,&resetNum,1);
+				}
+				if(confirmVal) {
+					if(selectCounter[2]) {
+						// Save present table as timenow.
+						status = dbGetField(&loadedfile_addr,DBR_STRING,backupName,&ropts,&nvals,NULL);
+						printf("BACKING UP: %s\n",backupName);
+						savesdffile(SAVE_TABLE_AS_SDF,SAVE_BACKUP,sdfDir,modelname,sdfile,saveasfilename,backupName,savefileaddr,savetimeaddr);
+						// Overwrite the table with new values
+						status = modifyTable(noMon,unMonChans);
+						// Overwrite file
+						savesdffile(SAVE_TABLE_AS_SDF,SAVE_OVERWRITE_TABLE,sdfDir,modelname,sdfile,saveasfilename,backupName,savefileaddr,savetimeaddr);
+						status = appendAlarms2File(sdfDir,backupName);
+					}
+					confirmVal = 0;
+					selectCounter[0] = 0;
+					selectCounter[1] = 0;
+					selectCounter[2] = 0;
+					status = dbPutField(&confirmwordaddr,DBR_LONG,&confirmVal,1);
+					for(ii=0;ii<noMon;ii++) {
+						 unMonChans[ii].chFlag = 0;
+					}
+					noMon = createSortTableEntries(chNum);
+					// Calculate and report number of channels NOT being monitored.
+					status = dbPutField(&monchancntaddr,DBR_LONG,&noMon,1);
+				}
 				status = dbPutField(&sorttableentriesaddr,DBR_LONG,&noMon,1);
+				lastTable = 3;
 				break;
 			case 4:
 				numReport = reportSetErrors(pref, rderror, readErrTable,pageNum);
 				status = dbPutField(&sorttableentriesaddr,DBR_LONG,&rderror,1);
+				lastTable = 4;
 				break;
 			default:
 				numReport = reportSetErrors(pref, sperror,setErrTable,pageNum);
@@ -1722,14 +2075,13 @@ sleep(5);
 		}
 		if(numReport != pageNum) {
 			pageNum = numReport;
-			status = dbPutField(&pagereqaddr,DBR_USHORT,&pageNum,1);                // Init to zero.
 		}
-		if(resetNum) {
-			resetNum = 0;
-			status = dbPutField(&resetoneaddr,DBR_LONG,&resetNum,1);
+		freezeTable = 0;
+		for(ii=0;ii<3;ii++) {
+			freezeTable += selectCounter[ii];
+			status = dbPutField(&selectaddr[ii],DBR_LONG,&selectCounter[ii],1);
 		}
 
-
 		// Check file CRCs every 5 seconds.
 		// DAQ and COEFF file checking was moved from skeleton.st to here RCG V2.9.
 		if(!fivesectimer) {
diff --git a/src/epics/util/SDF_RESTORE.adl b/src/epics/util/SDF_RESTORE.adl
index 495b2893ff69528aa6bd94dece662f0b7567ddc7..88fcb79fb7a666ddcb299d7472bb45a7bf130493 100644
--- a/src/epics/util/SDF_RESTORE.adl
+++ b/src/epics/util/SDF_RESTORE.adl
@@ -160,7 +160,7 @@ rectangle {
 	}
 	clr=0
 	bclr=34
-	label="SDF MONITOR"
+	label="SDF TABLE"
 }
 rectangle {
 	object {
@@ -856,7 +856,7 @@ text {
 "message button" {
 	object {
 		x=348
-		y=273
+		y=300
 		width=140
 		height=19
 	}
@@ -873,7 +873,7 @@ text {
 		x=348
 		y=158
 		width=140
-		height=19
+		height=35
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RELOAD"
@@ -886,7 +886,7 @@ text {
 "message button" {
 	object {
 		x=348
-		y=182
+		y=216
 		width=140
 		height=19
 	}
@@ -901,7 +901,7 @@ text {
 "message button" {
 	object {
 		x=348
-		y=206
+		y=246
 		width=140
 		height=19
 	}
diff --git a/src/epics/util/SDF_TABLE.adl b/src/epics/util/SDF_TABLE.adl
index 8af14310faca9cfa08986da60f45c1bac05db730..9d948f5ee2beb9d15afbdaccfdf817849b0c7aa0 100644
--- a/src/epics/util/SDF_TABLE.adl
+++ b/src/epics/util/SDF_TABLE.adl
@@ -5,10 +5,10 @@ file {
 }
 display {
 	object {
-		x=949
-		y=229
-		width=1140
-		height=920
+		x=605
+		y=120
+		width=1280
+		height=970
 	}
 	clr=14
 	bclr=3
@@ -89,48 +89,20 @@ display {
 }
 rectangle {
 	object {
-		x=0
-		y=0
-		width=1140
-		height=22
-	}
-	"basic attribute" {
-		clr=14
-	}
-}
-text {
-	object {
-		x=10
-		y=4
+		x=1075
+		y=22
 		width=200
-		height=18
+		height=90
 	}
 	"basic attribute" {
-		clr=2
-	}
-	textix="FBID_SDF_TABLE"
-	align="horiz. centered"
-}
-"text update" {
-	object {
-		x=858
-		y=4
-		width=200
-		height=15
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_TIME_STRING"
-		clr=2
-		bclr=14
-	}
-	limits {
+		clr=52
 	}
 }
 rectangle {
 	object {
 		x=0
-		y=24
-		width=1140
+		y=84
+		width=1073
 		height=30
 	}
 	"basic attribute" {
@@ -140,8 +112,8 @@ rectangle {
 rectangle {
 	object {
 		x=42
-		y=57
-		width=1095
+		y=117
+		width=1233
 		height=22
 	}
 	"basic attribute" {
@@ -151,7 +123,7 @@ rectangle {
 text {
 	object {
 		x=91
-		y=60
+		y=120
 		width=200
 		height=18
 	}
@@ -163,9 +135,9 @@ text {
 }
 menu {
 	object {
-		x=336
-		y=29
-		width=200
+		x=245
+		y=89
+		width=182
 		height=20
 	}
 	control {
@@ -176,8 +148,8 @@ menu {
 }
 "text update" {
 	object {
-		x=242
-		y=31
+		x=174
+		y=91
 		width=50
 		height=16
 	}
@@ -192,8 +164,8 @@ menu {
 }
 text {
 	object {
-		x=50
-		y=31
+		x=12
+		y=91
 		width=100
 		height=18
 	}
@@ -205,177 +177,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=81
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT0"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=101
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT1"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=121
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT2"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=141
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT3"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=161
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT4"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=181
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT5"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=201
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT6"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=221
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT7"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=241
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT8"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=261
-		width=315
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT9"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=42
-		y=286
+		y=346
 		width=315
 		height=20
 	}
@@ -392,7 +194,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=306
+		y=366
 		width=315
 		height=20
 	}
@@ -409,7 +211,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=326
+		y=386
 		width=315
 		height=20
 	}
@@ -426,7 +228,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=346
+		y=406
 		width=315
 		height=20
 	}
@@ -443,7 +245,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=366
+		y=426
 		width=315
 		height=20
 	}
@@ -460,7 +262,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=386
+		y=446
 		width=315
 		height=20
 	}
@@ -477,7 +279,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=406
+		y=466
 		width=315
 		height=20
 	}
@@ -494,7 +296,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=426
+		y=486
 		width=315
 		height=20
 	}
@@ -511,7 +313,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=446
+		y=506
 		width=315
 		height=20
 	}
@@ -528,7 +330,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=466
+		y=526
 		width=315
 		height=20
 	}
@@ -545,7 +347,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=491
+		y=551
 		width=315
 		height=20
 	}
@@ -562,7 +364,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=511
+		y=571
 		width=315
 		height=20
 	}
@@ -579,7 +381,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=531
+		y=591
 		width=315
 		height=20
 	}
@@ -596,7 +398,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=551
+		y=611
 		width=315
 		height=20
 	}
@@ -613,7 +415,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=571
+		y=631
 		width=315
 		height=20
 	}
@@ -630,7 +432,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=591
+		y=651
 		width=315
 		height=20
 	}
@@ -647,7 +449,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=611
+		y=671
 		width=315
 		height=20
 	}
@@ -664,7 +466,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=631
+		y=691
 		width=315
 		height=20
 	}
@@ -681,7 +483,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=651
+		y=711
 		width=315
 		height=20
 	}
@@ -698,7 +500,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=671
+		y=731
 		width=315
 		height=20
 	}
@@ -715,7 +517,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=697
+		y=757
 		width=315
 		height=20
 	}
@@ -732,7 +534,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=717
+		y=777
 		width=315
 		height=20
 	}
@@ -749,7 +551,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=737
+		y=797
 		width=315
 		height=20
 	}
@@ -766,7 +568,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=757
+		y=817
 		width=315
 		height=20
 	}
@@ -783,7 +585,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=777
+		y=837
 		width=315
 		height=20
 	}
@@ -800,7 +602,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=797
+		y=857
 		width=315
 		height=20
 	}
@@ -817,7 +619,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=817
+		y=877
 		width=315
 		height=20
 	}
@@ -834,7 +636,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=837
+		y=897
 		width=315
 		height=20
 	}
@@ -851,7 +653,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=857
+		y=917
 		width=315
 		height=20
 	}
@@ -868,7 +670,7 @@ text {
 "text update" {
 	object {
 		x=42
-		y=877
+		y=937
 		width=315
 		height=20
 	}
@@ -884,8 +686,8 @@ text {
 }
 text {
 	object {
-		x=885
-		y=61
+		x=882
+		y=121
 		width=190
 		height=18
 	}
@@ -897,8 +699,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=81
+		x=882
+		y=141
 		width=190
 		height=20
 	}
@@ -914,8 +716,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=101
+		x=882
+		y=161
 		width=190
 		height=20
 	}
@@ -931,8 +733,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=121
+		x=882
+		y=181
 		width=190
 		height=20
 	}
@@ -948,8 +750,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=141
+		x=882
+		y=201
 		width=190
 		height=20
 	}
@@ -965,8 +767,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=161
+		x=882
+		y=221
 		width=190
 		height=20
 	}
@@ -982,8 +784,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=181
+		x=882
+		y=241
 		width=190
 		height=20
 	}
@@ -999,8 +801,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=201
+		x=882
+		y=261
 		width=190
 		height=20
 	}
@@ -1016,8 +818,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=221
+		x=882
+		y=281
 		width=190
 		height=20
 	}
@@ -1033,8 +835,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=241
+		x=882
+		y=301
 		width=190
 		height=20
 	}
@@ -1050,8 +852,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=261
+		x=882
+		y=321
 		width=190
 		height=20
 	}
@@ -1067,8 +869,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=286
+		x=882
+		y=346
 		width=190
 		height=20
 	}
@@ -1084,8 +886,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=306
+		x=882
+		y=366
 		width=190
 		height=20
 	}
@@ -1101,8 +903,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=326
+		x=882
+		y=386
 		width=190
 		height=20
 	}
@@ -1118,8 +920,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=346
+		x=882
+		y=406
 		width=190
 		height=20
 	}
@@ -1135,8 +937,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=366
+		x=882
+		y=426
 		width=190
 		height=20
 	}
@@ -1152,8 +954,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=386
+		x=882
+		y=446
 		width=190
 		height=20
 	}
@@ -1169,8 +971,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=406
+		x=882
+		y=466
 		width=190
 		height=20
 	}
@@ -1186,8 +988,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=426
+		x=882
+		y=486
 		width=190
 		height=20
 	}
@@ -1203,8 +1005,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=446
+		x=882
+		y=506
 		width=190
 		height=20
 	}
@@ -1220,8 +1022,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=466
+		x=882
+		y=526
 		width=190
 		height=20
 	}
@@ -1237,8 +1039,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=491
+		x=882
+		y=551
 		width=190
 		height=20
 	}
@@ -1254,8 +1056,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=511
+		x=882
+		y=571
 		width=190
 		height=20
 	}
@@ -1271,8 +1073,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=531
+		x=882
+		y=591
 		width=190
 		height=20
 	}
@@ -1288,8 +1090,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=551
+		x=882
+		y=611
 		width=190
 		height=20
 	}
@@ -1305,8 +1107,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=571
+		x=882
+		y=631
 		width=190
 		height=20
 	}
@@ -1322,8 +1124,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=591
+		x=882
+		y=651
 		width=190
 		height=20
 	}
@@ -1339,8 +1141,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=611
+		x=882
+		y=671
 		width=190
 		height=20
 	}
@@ -1356,8 +1158,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=631
+		x=882
+		y=691
 		width=190
 		height=20
 	}
@@ -1373,8 +1175,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=651
+		x=882
+		y=711
 		width=190
 		height=20
 	}
@@ -1390,8 +1192,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=671
+		x=882
+		y=731
 		width=190
 		height=20
 	}
@@ -1407,8 +1209,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=697
+		x=882
+		y=757
 		width=190
 		height=20
 	}
@@ -1424,8 +1226,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=717
+		x=882
+		y=777
 		width=190
 		height=20
 	}
@@ -1441,8 +1243,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=737
+		x=882
+		y=797
 		width=190
 		height=20
 	}
@@ -1458,8 +1260,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=757
+		x=882
+		y=817
 		width=190
 		height=20
 	}
@@ -1475,8 +1277,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=777
+		x=882
+		y=837
 		width=190
 		height=20
 	}
@@ -1492,8 +1294,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=797
+		x=882
+		y=857
 		width=190
 		height=20
 	}
@@ -1509,8 +1311,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=817
+		x=882
+		y=877
 		width=190
 		height=20
 	}
@@ -1526,8 +1328,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=837
+		x=882
+		y=897
 		width=190
 		height=20
 	}
@@ -1543,8 +1345,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=857
+		x=882
+		y=917
 		width=190
 		height=20
 	}
@@ -1560,8 +1362,8 @@ text {
 }
 "text update" {
 	object {
-		x=885
-		y=877
+		x=882
+		y=937
 		width=190
 		height=20
 	}
@@ -1577,8 +1379,8 @@ text {
 }
 text {
 	object {
-		x=759
-		y=61
+		x=756
+		y=121
 		width=69
 		height=18
 	}
@@ -1590,8 +1392,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=81
+		x=707
+		y=141
 		width=170
 		height=20
 	}
@@ -1607,8 +1409,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=101
+		x=707
+		y=161
 		width=170
 		height=20
 	}
@@ -1624,8 +1426,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=121
+		x=707
+		y=181
 		width=170
 		height=20
 	}
@@ -1641,8 +1443,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=141
+		x=707
+		y=201
 		width=170
 		height=20
 	}
@@ -1658,8 +1460,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=161
+		x=707
+		y=221
 		width=170
 		height=20
 	}
@@ -1675,8 +1477,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=181
+		x=707
+		y=241
 		width=170
 		height=20
 	}
@@ -1692,8 +1494,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=201
+		x=707
+		y=261
 		width=170
 		height=20
 	}
@@ -1709,8 +1511,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=221
+		x=707
+		y=281
 		width=170
 		height=20
 	}
@@ -1726,8 +1528,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=241
+		x=707
+		y=301
 		width=170
 		height=20
 	}
@@ -1743,8 +1545,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=261
+		x=707
+		y=321
 		width=170
 		height=20
 	}
@@ -1760,8 +1562,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=286
+		x=707
+		y=346
 		width=170
 		height=20
 	}
@@ -1777,8 +1579,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=306
+		x=707
+		y=366
 		width=170
 		height=20
 	}
@@ -1794,8 +1596,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=326
+		x=707
+		y=386
 		width=170
 		height=20
 	}
@@ -1811,8 +1613,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=346
+		x=707
+		y=406
 		width=170
 		height=20
 	}
@@ -1828,8 +1630,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=366
+		x=707
+		y=426
 		width=170
 		height=20
 	}
@@ -1845,8 +1647,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=386
+		x=707
+		y=446
 		width=170
 		height=20
 	}
@@ -1862,8 +1664,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=406
+		x=707
+		y=466
 		width=170
 		height=20
 	}
@@ -1879,8 +1681,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=426
+		x=707
+		y=486
 		width=170
 		height=20
 	}
@@ -1896,8 +1698,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=446
+		x=707
+		y=506
 		width=170
 		height=20
 	}
@@ -1913,8 +1715,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=466
+		x=707
+		y=526
 		width=170
 		height=20
 	}
@@ -1930,8 +1732,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=491
+		x=707
+		y=551
 		width=170
 		height=20
 	}
@@ -1947,8 +1749,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=511
+		x=707
+		y=571
 		width=170
 		height=20
 	}
@@ -1964,8 +1766,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=531
+		x=707
+		y=591
 		width=170
 		height=20
 	}
@@ -1981,8 +1783,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=551
+		x=707
+		y=611
 		width=170
 		height=20
 	}
@@ -1998,8 +1800,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=571
+		x=707
+		y=631
 		width=170
 		height=20
 	}
@@ -2015,8 +1817,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=591
+		x=707
+		y=651
 		width=170
 		height=20
 	}
@@ -2032,8 +1834,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=611
+		x=707
+		y=671
 		width=170
 		height=20
 	}
@@ -2049,8 +1851,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=631
+		x=707
+		y=691
 		width=170
 		height=20
 	}
@@ -2066,8 +1868,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=651
+		x=707
+		y=711
 		width=170
 		height=20
 	}
@@ -2083,8 +1885,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=671
+		x=707
+		y=731
 		width=170
 		height=20
 	}
@@ -2100,8 +1902,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=697
+		x=707
+		y=757
 		width=170
 		height=20
 	}
@@ -2117,8 +1919,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=717
+		x=707
+		y=777
 		width=170
 		height=20
 	}
@@ -2134,8 +1936,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=737
+		x=707
+		y=797
 		width=170
 		height=20
 	}
@@ -2151,8 +1953,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=757
+		x=707
+		y=817
 		width=170
 		height=20
 	}
@@ -2168,8 +1970,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=777
+		x=707
+		y=837
 		width=170
 		height=20
 	}
@@ -2185,8 +1987,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=797
+		x=707
+		y=857
 		width=170
 		height=20
 	}
@@ -2202,8 +2004,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=817
+		x=707
+		y=877
 		width=170
 		height=20
 	}
@@ -2219,8 +2021,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=837
+		x=707
+		y=897
 		width=170
 		height=20
 	}
@@ -2236,8 +2038,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=857
+		x=707
+		y=917
 		width=170
 		height=20
 	}
@@ -2253,8 +2055,8 @@ text {
 }
 "text update" {
 	object {
-		x=710
-		y=877
+		x=707
+		y=937
 		width=170
 		height=20
 	}
@@ -2270,18 +2072,18 @@ text {
 }
 composite {
 	object {
-		x=535
-		y=61
-		width=170
+		x=537
+		y=121
+		width=165
 		height=836
 	}
 	"composite name"=""
 	children {
 		text {
 			object {
-				x=535
-				y=61
-				width=170
+				x=537
+				y=121
+				width=165
 				height=18
 			}
 			"basic attribute" {
@@ -2292,9 +2094,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=81
-				width=170
+				x=537
+				y=141
+				width=165
 				height=20
 			}
 			monitor {
@@ -2309,9 +2111,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=101
-				width=170
+				x=537
+				y=161
+				width=165
 				height=20
 			}
 			monitor {
@@ -2326,9 +2128,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=121
-				width=170
+				x=537
+				y=181
+				width=165
 				height=20
 			}
 			monitor {
@@ -2343,9 +2145,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=141
-				width=170
+				x=537
+				y=201
+				width=165
 				height=20
 			}
 			monitor {
@@ -2360,9 +2162,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=161
-				width=170
+				x=537
+				y=221
+				width=165
 				height=20
 			}
 			monitor {
@@ -2377,9 +2179,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=181
-				width=170
+				x=537
+				y=241
+				width=165
 				height=20
 			}
 			monitor {
@@ -2394,9 +2196,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=201
-				width=170
+				x=537
+				y=261
+				width=165
 				height=20
 			}
 			monitor {
@@ -2411,9 +2213,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=221
-				width=170
+				x=537
+				y=281
+				width=165
 				height=20
 			}
 			monitor {
@@ -2428,9 +2230,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=241
-				width=170
+				x=537
+				y=301
+				width=165
 				height=20
 			}
 			monitor {
@@ -2445,9 +2247,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=261
-				width=170
+				x=537
+				y=321
+				width=165
 				height=20
 			}
 			monitor {
@@ -2462,9 +2264,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=286
-				width=170
+				x=537
+				y=346
+				width=165
 				height=20
 			}
 			monitor {
@@ -2479,9 +2281,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=306
-				width=170
+				x=537
+				y=366
+				width=165
 				height=20
 			}
 			monitor {
@@ -2496,9 +2298,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=326
-				width=170
+				x=537
+				y=386
+				width=165
 				height=20
 			}
 			monitor {
@@ -2513,9 +2315,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=346
-				width=170
+				x=537
+				y=406
+				width=165
 				height=20
 			}
 			monitor {
@@ -2530,9 +2332,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=366
-				width=170
+				x=537
+				y=426
+				width=165
 				height=20
 			}
 			monitor {
@@ -2547,9 +2349,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=386
-				width=170
+				x=537
+				y=446
+				width=165
 				height=20
 			}
 			monitor {
@@ -2564,9 +2366,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=406
-				width=170
+				x=537
+				y=466
+				width=165
 				height=20
 			}
 			monitor {
@@ -2581,9 +2383,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=426
-				width=170
+				x=537
+				y=486
+				width=165
 				height=20
 			}
 			monitor {
@@ -2598,9 +2400,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=446
-				width=170
+				x=537
+				y=506
+				width=165
 				height=20
 			}
 			monitor {
@@ -2615,9 +2417,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=466
-				width=170
+				x=537
+				y=526
+				width=165
 				height=20
 			}
 			monitor {
@@ -2632,9 +2434,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=491
-				width=170
+				x=537
+				y=551
+				width=165
 				height=20
 			}
 			monitor {
@@ -2649,9 +2451,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=511
-				width=170
+				x=537
+				y=571
+				width=165
 				height=20
 			}
 			monitor {
@@ -2666,9 +2468,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=531
-				width=170
+				x=537
+				y=591
+				width=165
 				height=20
 			}
 			monitor {
@@ -2683,9 +2485,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=551
-				width=170
+				x=537
+				y=611
+				width=165
 				height=20
 			}
 			monitor {
@@ -2700,9 +2502,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=571
-				width=170
+				x=537
+				y=631
+				width=165
 				height=20
 			}
 			monitor {
@@ -2717,9 +2519,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=591
-				width=170
+				x=537
+				y=651
+				width=165
 				height=20
 			}
 			monitor {
@@ -2734,9 +2536,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=611
-				width=170
+				x=537
+				y=671
+				width=165
 				height=20
 			}
 			monitor {
@@ -2751,9 +2553,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=631
-				width=170
+				x=537
+				y=691
+				width=165
 				height=20
 			}
 			monitor {
@@ -2768,9 +2570,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=651
-				width=170
+				x=537
+				y=711
+				width=165
 				height=20
 			}
 			monitor {
@@ -2785,9 +2587,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=671
-				width=170
+				x=537
+				y=731
+				width=165
 				height=20
 			}
 			monitor {
@@ -2802,9 +2604,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=697
-				width=170
+				x=537
+				y=757
+				width=165
 				height=20
 			}
 			monitor {
@@ -2819,9 +2621,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=717
-				width=170
+				x=537
+				y=777
+				width=165
 				height=20
 			}
 			monitor {
@@ -2836,9 +2638,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=737
-				width=170
+				x=537
+				y=797
+				width=165
 				height=20
 			}
 			monitor {
@@ -2853,9 +2655,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=757
-				width=170
+				x=537
+				y=817
+				width=165
 				height=20
 			}
 			monitor {
@@ -2870,9 +2672,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=777
-				width=170
+				x=537
+				y=837
+				width=165
 				height=20
 			}
 			monitor {
@@ -2887,9 +2689,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=797
-				width=170
+				x=537
+				y=857
+				width=165
 				height=20
 			}
 			monitor {
@@ -2904,9 +2706,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=817
-				width=170
+				x=537
+				y=877
+				width=165
 				height=20
 			}
 			monitor {
@@ -2921,9 +2723,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=837
-				width=170
+				x=537
+				y=897
+				width=165
 				height=20
 			}
 			monitor {
@@ -2938,9 +2740,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=857
-				width=170
+				x=537
+				y=917
+				width=165
 				height=20
 			}
 			monitor {
@@ -2955,9 +2757,9 @@ composite {
 		}
 		"text update" {
 			object {
-				x=535
-				y=877
-				width=170
+				x=537
+				y=937
+				width=165
 				height=20
 			}
 			monitor {
@@ -2972,725 +2774,19 @@ composite {
 		}
 	}
 }
-text {
-	object {
-		x=366
-		y=61
-		width=168
-		height=18
-	}
-	"basic attribute" {
-		clr=2
-	}
-	textix="BURT"
-	align="horiz. centered"
-}
-"text update" {
-	object {
-		x=362
-		y=81
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT0_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=101
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT1_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=121
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT2_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
+composite {
 	object {
-		x=362
+		x=7
 		y=141
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT3_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=161
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT4_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=181
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT5_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=201
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT6_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=221
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT7_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=241
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT8_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=261
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT9_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=286
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT10_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=306
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT11_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=326
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT12_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=346
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT13_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=366
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT14_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=386
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT15_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=406
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT16_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=426
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT17_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=446
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT18_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=466
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT19_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=491
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT20_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=511
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT21_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=531
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT22_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=551
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT23_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=571
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT24_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=591
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT25_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=611
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT26_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=631
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT27_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=651
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT28_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=671
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT29_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=697
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT30_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=717
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT31_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=737
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT32_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=757
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT33_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=777
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT34_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=797
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT35_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=817
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT36_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=837
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT37_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=857
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT38_BURT"
-		clr=14
-		bclr=50
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-"text update" {
-	object {
-		x=362
-		y=877
-		width=168
-		height=20
-	}
-	monitor {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT39_BURT"
-		clr=14
-		bclr=1
-	}
-	align="horiz. centered"
-	format="string"
-	limits {
-	}
-}
-menu {
-	object {
-		x=565
-		y=29
-		width=100
-		height=20
-	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_PAGE"
-		clr=0
-		bclr=60
-	}
-}
-composite {
-	object {
-		x=7
-		y=81
-		width=30
-		height=816
+		width=30
+		height=816
 	}
 	"composite name"=""
 	children {
 		composite {
 			object {
 				x=7
-				y=81
+				y=141
 				width=30
 				height=405
 			}
@@ -3699,7 +2795,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=81
+						y=141
 						width=30
 						height=20
 					}
@@ -3716,7 +2812,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=101
+						y=161
 						width=30
 						height=20
 					}
@@ -3733,7 +2829,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=121
+						y=181
 						width=30
 						height=20
 					}
@@ -3750,7 +2846,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=141
+						y=201
 						width=30
 						height=20
 					}
@@ -3767,7 +2863,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=161
+						y=221
 						width=30
 						height=20
 					}
@@ -3784,7 +2880,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=181
+						y=241
 						width=30
 						height=20
 					}
@@ -3801,7 +2897,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=201
+						y=261
 						width=30
 						height=20
 					}
@@ -3818,7 +2914,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=221
+						y=281
 						width=30
 						height=20
 					}
@@ -3835,7 +2931,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=241
+						y=301
 						width=30
 						height=20
 					}
@@ -3852,7 +2948,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=261
+						y=321
 						width=30
 						height=20
 					}
@@ -3869,7 +2965,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=286
+						y=346
 						width=30
 						height=20
 					}
@@ -3886,7 +2982,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=306
+						y=366
 						width=30
 						height=20
 					}
@@ -3903,7 +2999,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=326
+						y=386
 						width=30
 						height=20
 					}
@@ -3920,7 +3016,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=346
+						y=406
 						width=30
 						height=20
 					}
@@ -3937,7 +3033,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=366
+						y=426
 						width=30
 						height=20
 					}
@@ -3954,7 +3050,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=386
+						y=446
 						width=30
 						height=20
 					}
@@ -3971,7 +3067,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=406
+						y=466
 						width=30
 						height=20
 					}
@@ -3988,7 +3084,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=426
+						y=486
 						width=30
 						height=20
 					}
@@ -4005,7 +3101,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=446
+						y=506
 						width=30
 						height=20
 					}
@@ -4022,7 +3118,7 @@ composite {
 				"text update" {
 					object {
 						x=7
-						y=466
+						y=526
 						width=30
 						height=20
 					}
@@ -4040,13 +3136,950 @@ composite {
 		}
 		"text update" {
 			object {
-				x=7
-				y=491
-				width=30
+				x=7
+				y=551
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_20"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=571
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_21"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=591
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_22"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=611
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_23"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=631
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_24"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=651
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_25"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=671
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_26"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=691
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_27"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=711
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_28"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=731
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_29"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=757
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_30"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=777
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_31"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=797
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_32"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=817
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_33"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=837
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_34"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=857
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_35"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=877
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_36"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=897
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_37"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=917
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_38"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=7
+				y=937
+				width=30
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_39"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+	}
+}
+"message button" {
+	object {
+		x=1095
+		y=347
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<<RESET"
+	release_msg="11"
+}
+"message button" {
+	object {
+		x=1095
+		y=367
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<<RESET"
+	release_msg="12"
+}
+"message button" {
+	object {
+		x=1095
+		y=387
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<<RESET"
+	release_msg="13"
+}
+"message button" {
+	object {
+		x=1095
+		y=407
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<<RESET"
+	release_msg="14"
+}
+"message button" {
+	object {
+		x=1095
+		y=427
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<<RESET"
+	release_msg="15"
+}
+"message button" {
+	object {
+		x=1095
+		y=447
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<<RESET"
+	release_msg="16"
+}
+"message button" {
+	object {
+		x=1095
+		y=467
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<<RESET"
+	release_msg="17"
+}
+"message button" {
+	object {
+		x=1095
+		y=487
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<<RESET"
+	release_msg="18"
+}
+"message button" {
+	object {
+		x=1095
+		y=507
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<<RESET"
+	release_msg="19"
+}
+"message button" {
+	object {
+		x=1095
+		y=527
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<<RESET"
+	release_msg="20"
+}
+"message button" {
+	object {
+		x=1095
+		y=552
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="21"
+}
+"message button" {
+	object {
+		x=1095
+		y=572
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="22"
+}
+"message button" {
+	object {
+		x=1095
+		y=592
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="23"
+}
+"message button" {
+	object {
+		x=1095
+		y=612
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="24"
+}
+"message button" {
+	object {
+		x=1095
+		y=632
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="25"
+}
+"message button" {
+	object {
+		x=1095
+		y=652
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="26"
+}
+"message button" {
+	object {
+		x=1095
+		y=672
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="27"
+}
+"message button" {
+	object {
+		x=1095
+		y=692
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="28"
+}
+"message button" {
+	object {
+		x=1095
+		y=712
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="29"
+}
+"message button" {
+	object {
+		x=1095
+		y=732
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="30"
+}
+"message button" {
+	object {
+		x=1095
+		y=758
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="31"
+}
+"message button" {
+	object {
+		x=1095
+		y=778
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="32"
+}
+"message button" {
+	object {
+		x=1095
+		y=798
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="33"
+}
+"message button" {
+	object {
+		x=1095
+		y=818
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="34"
+}
+"message button" {
+	object {
+		x=1095
+		y=838
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="35"
+}
+"message button" {
+	object {
+		x=1095
+		y=858
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="36"
+}
+"message button" {
+	object {
+		x=1095
+		y=878
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="37"
+}
+"message button" {
+	object {
+		x=1095
+		y=898
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="38"
+}
+"message button" {
+	object {
+		x=1095
+		y=918
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="39"
+}
+"message button" {
+	object {
+		x=1095
+		y=938
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="40"
+}
+composite {
+	object {
+		x=42
+		y=141
+		width=315
+		height=200
+	}
+	"composite name"=""
+	children {
+		"text update" {
+			object {
+				x=42
+				y=141
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT0"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=161
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT1"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=181
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT2"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=201
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT3"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=221
+				width=315
 				height=20
 			}
 			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_20"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT4"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=241
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT5"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=261
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT6"
+				clr=14
+				bclr=50
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=281
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT7"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+		"text update" {
+			object {
+				x=42
+				y=301
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT8"
 				clr=14
 				bclr=50
 			}
@@ -4057,950 +4090,5349 @@ composite {
 		}
 		"text update" {
 			object {
-				x=7
-				y=511
-				width=30
-				height=20
+				x=42
+				y=321
+				width=315
+				height=20
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT9"
+				clr=14
+				bclr=1
+			}
+			align="horiz. centered"
+			format="string"
+			limits {
+			}
+		}
+	}
+}
+"message button" {
+	object {
+		x=475
+		y=90
+		width=70
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_PAGE"
+		clr=14
+		bclr=32
+	}
+	label="PAGE DOWN"
+	release_msg="1"
+}
+"message button" {
+	object {
+		x=551
+		y=90
+		width=70
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_PAGE"
+		clr=14
+		bclr=55
+	}
+	label="PAGE UP"
+	release_msg="-1"
+}
+"text entry" {
+	object {
+		x=800
+		y=89
+		width=200
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_WC_STR"
+		clr=14
+		bclr=0
+	}
+	limits {
+	}
+}
+composite {
+	object {
+		x=0
+		y=0
+		width=1280
+		height=22
+	}
+	"composite name"=""
+	children {
+		text {
+			object {
+				x=11
+				y=4
+				width=225
+				height=18
+			}
+			"basic attribute" {
+				clr=2
+			}
+			textix="FBID_SDF_TABLE"
+			align="horiz. centered"
+		}
+		rectangle {
+			object {
+				x=0
+				y=0
+				width=1280
+				height=22
+			}
+			"basic attribute" {
+				clr=14
+			}
+		}
+		"text update" {
+			object {
+				x=964
+				y=4
+				width=225
+				height=15
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_TIME_STRING"
+				clr=2
+				bclr=14
+			}
+			limits {
+			}
+		}
+	}
+}
+rectangle {
+	object {
+		x=0
+		y=22
+		width=1073
+		height=60
+	}
+	"basic attribute" {
+		clr=55
+	}
+}
+"choice button" {
+	object {
+		x=570
+		y=34
+		width=50
+		height=38
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_MON_ALL"
+		clr=0
+		bclr=29
+	}
+}
+composite {
+	object {
+		x=508
+		y=36
+		width=50
+		height=32
+	}
+	"composite name"=""
+	children {
+		text {
+			object {
+				x=508
+				y=36
+				width=50
+				height=16
+			}
+			"basic attribute" {
+				clr=14
+			}
+			textix="MONITOR"
+			align="horiz. centered"
+		}
+		text {
+			object {
+				x=508
+				y=52
+				width=50
+				height=16
+			}
+			"basic attribute" {
+				clr=14
+			}
+			textix="SELECT"
+			align="horiz. centered"
+		}
+	}
+}
+text {
+	object {
+		x=108
+		y=43
+		width=50
+		height=16
+	}
+	"basic attribute" {
+		clr=14
+	}
+	textix="DIFFS"
+	align="horiz. centered"
+}
+"text update" {
+	object {
+		x=108
+		y=58
+		width=50
+		height=16
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_DIFF_CNT"
+		clr=0
+		bclr=14
+	}
+	align="horiz. centered"
+	limits {
+	}
+}
+text {
+	object {
+		x=108
+		y=27
+		width=50
+		height=16
+	}
+	"basic attribute" {
+		clr=14
+	}
+	textix="TOTAL"
+	align="horiz. centered"
+}
+composite {
+	object {
+		x=42
+		y=27
+		width=50
+		height=47
+	}
+	"composite name"=""
+	children {
+		"text update" {
+			object {
+				x=42
+				y=58
+				width=50
+				height=16
+			}
+			monitor {
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_FULL_CNT"
+				clr=0
+				bclr=14
+			}
+			align="horiz. centered"
+			limits {
+			}
+		}
+		text {
+			object {
+				x=42
+				y=27
+				width=50
+				height=16
+			}
+			"basic attribute" {
+				clr=14
+			}
+			textix="TOTAL"
+			align="horiz. centered"
+		}
+		text {
+			object {
+				x=42
+				y=43
+				width=50
+				height=16
+			}
+			"basic attribute" {
+				clr=14
+			}
+			textix="SET PTS"
+			align="horiz. centered"
+		}
+	}
+}
+text {
+	object {
+		x=174
+		y=43
+		width=50
+		height=16
+	}
+	"basic attribute" {
+		clr=14
+	}
+	textix="MONITORED"
+	align="horiz. centered"
+}
+"text update" {
+	object {
+		x=174
+		y=58
+		width=50
+		height=16
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_UNMON_CNT"
+		clr=0
+		bclr=14
+	}
+	align="horiz. centered"
+	limits {
+	}
+}
+text {
+	object {
+		x=174
+		y=27
+		width=50
+		height=16
+	}
+	"basic attribute" {
+		clr=14
+	}
+	textix="NOT"
+	align="horiz. centered"
+}
+composite {
+	object {
+		x=245
+		y=27
+		width=182
+		height=47
+	}
+	"composite name"=""
+	children {
+		"text update" {
+			object {
+				x=377
+				y=58
+				width=50
+				height=16
 			}
 			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_21"
-				clr=14
-				bclr=1
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_ALARM_CNT"
+				clr=0
+				bclr=14
 			}
 			align="horiz. centered"
-			format="string"
 			limits {
 			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=531
-				width=30
-				height=20
+				x=377
+				y=27
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_22"
+			"basic attribute" {
 				clr=14
-				bclr=50
 			}
+			textix="ALARM"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=551
-				width=30
-				height=20
+				x=377
+				y=43
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_23"
+			"basic attribute" {
 				clr=14
-				bclr=1
 			}
+			textix="SETS"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
 		"text update" {
 			object {
-				x=7
-				y=571
-				width=30
-				height=20
+				x=311
+				y=58
+				width=50
+				height=16
 			}
 			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_24"
-				clr=14
-				bclr=50
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_DROP_CNT"
+				clr=0
+				bclr=14
 			}
 			align="horiz. centered"
-			format="string"
 			limits {
 			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=591
-				width=30
-				height=20
+				x=311
+				y=27
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_25"
+			"basic attribute" {
 				clr=14
-				bclr=1
 			}
+			textix="NOT"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=611
-				width=30
-				height=20
+				x=311
+				y=43
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_26"
+			"basic attribute" {
 				clr=14
-				bclr=50
 			}
+			textix="FOUND"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
 		"text update" {
 			object {
-				x=7
-				y=631
-				width=30
-				height=20
+				x=245
+				y=58
+				width=50
+				height=16
 			}
 			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_27"
-				clr=14
-				bclr=1
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_UNINIT_CNT"
+				clr=0
+				bclr=14
 			}
 			align="horiz. centered"
-			format="string"
 			limits {
 			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=651
-				width=30
-				height=20
+				x=245
+				y=27
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_28"
+			"basic attribute" {
 				clr=14
-				bclr=50
 			}
+			textix="NOT"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
-		"text update" {
+		text {
 			object {
-				x=7
-				y=671
-				width=30
-				height=20
+				x=245
+				y=43
+				width=50
+				height=16
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_29"
+			"basic attribute" {
 				clr=14
-				bclr=1
 			}
+			textix="INIT"
 			align="horiz. centered"
-			format="string"
-			limits {
-			}
 		}
-		"text update" {
+	}
+}
+text {
+	object {
+		x=375
+		y=121
+		width=161
+		height=18
+	}
+	"basic attribute" {
+		clr=2
+	}
+	textix="BURT"
+	align="horiz. centered"
+}
+"text update" {
+	object {
+		x=371
+		y=141
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT0_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=161
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT1_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=181
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT2_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=201
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT3_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=221
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT4_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=241
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT5_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=261
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT6_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=281
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT7_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=301
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT8_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=321
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT9_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=346
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT10_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=366
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT11_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=386
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT12_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=406
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT13_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=426
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT14_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=446
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT15_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=466
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT16_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=486
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT17_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=506
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT18_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=526
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT19_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=551
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT20_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=571
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT21_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=591
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT22_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=611
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT23_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=631
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT24_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=651
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT25_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=671
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT26_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=691
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT27_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=711
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT28_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=731
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT29_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=757
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT30_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=777
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT31_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=797
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT32_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=817
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT33_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=837
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT34_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=857
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT35_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=877
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT36_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=897
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT37_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=917
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT38_BURT"
+		clr=14
+		bclr=50
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=371
+		y=937
+		width=161
+		height=20
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SP_STAT39_BURT"
+		clr=14
+		bclr=1
+	}
+	align="horiz. centered"
+	format="string"
+	limits {
+	}
+}
+"message button" {
+	object {
+		x=1120
+		y=33
+		width=113
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_CONFIRM"
+		clr=14
+		bclr=60
+	}
+	label="CONFIRM"
+	release_msg="2"
+}
+"message button" {
+	object {
+		x=1120
+		y=89
+		width=113
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_CONFIRM"
+		clr=0
+		bclr=21
+	}
+	label="CANCEL"
+	release_msg="1"
+}
+"text update" {
+	object {
+		x=1120
+		y=62
+		width=113
+		height=15
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LOADED"
+		clr=50
+		bclr=42
+	}
+	align="horiz. centered"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=1091
+		y=121
+		width=50
+		height=16
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SELECT_SUM0"
+		clr=0
+		bclr=14
+	}
+	clrmod="discrete"
+	align="horiz. centered"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=1159
+		y=121
+		width=50
+		height=16
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SELECT_SUM1"
+		clr=0
+		bclr=14
+	}
+	align="horiz. centered"
+	limits {
+	}
+}
+"text update" {
+	object {
+		x=1221
+		y=121
+		width=50
+		height=16
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_SELECT_SUM2"
+		clr=0
+		bclr=14
+	}
+	align="horiz. centered"
+	limits {
+	}
+}
+menu {
+	object {
+		x=676
+		y=89
+		width=100
+		height=20
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_WILDCARD"
+		clr=0
+		bclr=60
+	}
+}
+"related display" {
+	object {
+		x=800
+		y=42
+		width=200
+		height=20
+	}
+	display[0] {
+		name="TARGET_MEDM/FBID_SDF_RESTORE.adl"
+	}
+	clr=0
+	bclr=34
+	label="SDF SAVE / RESTORE"
+}
+"message button" {
+	object {
+		x=1095
+		y=142
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="1"
+}
+"message button" {
+	object {
+		x=1095
+		y=162
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="2"
+}
+"message button" {
+	object {
+		x=1095
+		y=182
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="3"
+}
+"message button" {
+	object {
+		x=1095
+		y=202
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="4"
+}
+"message button" {
+	object {
+		x=1095
+		y=222
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="5"
+}
+"message button" {
+	object {
+		x=1095
+		y=242
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="6"
+}
+"message button" {
+	object {
+		x=1095
+		y=262
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="7"
+}
+"message button" {
+	object {
+		x=1095
+		y=282
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="8"
+}
+"message button" {
+	object {
+		x=1095
+		y=302
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="9"
+}
+"message button" {
+	object {
+		x=1095
+		y=322
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="10"
+}
+"message button" {
+	object {
+		x=1160
+		y=142
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="101"
+}
+"message button" {
+	object {
+		x=1231
+		y=142
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="201"
+}
+"message button" {
+	object {
+		x=1160
+		y=162
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="102"
+}
+"message button" {
+	object {
+		x=1231
+		y=162
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="202"
+}
+"message button" {
+	object {
+		x=1160
+		y=182
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="103"
+}
+"message button" {
+	object {
+		x=1231
+		y=182
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="203"
+}
+"message button" {
+	object {
+		x=1160
+		y=202
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="104"
+}
+"message button" {
+	object {
+		x=1231
+		y=202
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="204"
+}
+"message button" {
+	object {
+		x=1160
+		y=222
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="105"
+}
+"message button" {
+	object {
+		x=1231
+		y=222
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="205"
+}
+"message button" {
+	object {
+		x=1160
+		y=242
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="106"
+}
+"message button" {
+	object {
+		x=1231
+		y=242
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="206"
+}
+"message button" {
+	object {
+		x=1160
+		y=262
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="107"
+}
+"message button" {
+	object {
+		x=1231
+		y=262
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="207"
+}
+"message button" {
+	object {
+		x=1160
+		y=282
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="108"
+}
+"message button" {
+	object {
+		x=1231
+		y=282
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="208"
+}
+byte {
+	object {
+		x=1076
+		y=162
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_1"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=182
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_2"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=202
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_3"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=222
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_4"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=242
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_5"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=142
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_0"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1142
+		y=162
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_1"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=182
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_2"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=202
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_3"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=222
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_4"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=242
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_5"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=262
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_6"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=282
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_7"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=302
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_8"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=162
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_1"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=182
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_2"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=202
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_3"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=222
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_4"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=242
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_5"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=262
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_6"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=282
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_7"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=302
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_8"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1142
+		y=142
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_0"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=142
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_0"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+"message button" {
+	object {
+		x=1160
+		y=302
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="109"
+}
+"message button" {
+	object {
+		x=1160
+		y=322
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="110"
+}
+"message button" {
+	object {
+		x=1231
+		y=302
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="209"
+}
+"message button" {
+	object {
+		x=1231
+		y=322
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="210"
+}
+byte {
+	object {
+		x=1142
+		y=322
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_9"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=322
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_9"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1076
+		y=262
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_6"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=282
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_7"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=302
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_8"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=322
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_9"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+"message button" {
+	object {
+		x=1095
+		y=344
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="11"
+}
+"message button" {
+	object {
+		x=1095
+		y=364
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="12"
+}
+"message button" {
+	object {
+		x=1095
+		y=384
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="13"
+}
+"message button" {
+	object {
+		x=1095
+		y=404
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="14"
+}
+"message button" {
+	object {
+		x=1095
+		y=424
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="15"
+}
+"message button" {
+	object {
+		x=1095
+		y=444
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="16"
+}
+"message button" {
+	object {
+		x=1095
+		y=464
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="17"
+}
+"message button" {
+	object {
+		x=1095
+		y=484
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="18"
+}
+"message button" {
+	object {
+		x=1095
+		y=504
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=50
+	}
+	label="<REVERT"
+	release_msg="19"
+}
+"message button" {
+	object {
+		x=1095
+		y=524
+		width=45
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=1
+	}
+	label="<REVERT"
+	release_msg="20"
+}
+"message button" {
+	object {
+		x=1160
+		y=344
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="111"
+}
+"message button" {
+	object {
+		x=1231
+		y=344
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="211"
+}
+"message button" {
+	object {
+		x=1160
+		y=364
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="112"
+}
+"message button" {
+	object {
+		x=1231
+		y=364
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="212"
+}
+"message button" {
+	object {
+		x=1160
+		y=384
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="113"
+}
+"message button" {
+	object {
+		x=1231
+		y=384
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="213"
+}
+"message button" {
+	object {
+		x=1160
+		y=404
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="114"
+}
+"message button" {
+	object {
+		x=1231
+		y=404
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="214"
+}
+"message button" {
+	object {
+		x=1160
+		y=424
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="115"
+}
+"message button" {
+	object {
+		x=1231
+		y=424
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="215"
+}
+"message button" {
+	object {
+		x=1160
+		y=444
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="116"
+}
+"message button" {
+	object {
+		x=1231
+		y=444
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="216"
+}
+"message button" {
+	object {
+		x=1160
+		y=464
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="117"
+}
+"message button" {
+	object {
+		x=1231
+		y=464
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="217"
+}
+"message button" {
+	object {
+		x=1160
+		y=484
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="118"
+}
+"message button" {
+	object {
+		x=1231
+		y=484
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="218"
+}
+byte {
+	object {
+		x=1076
+		y=364
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_11"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=384
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_12"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=404
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_13"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=424
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_14"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=444
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_15"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=344
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_10"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1142
+		y=364
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_11"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=384
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_12"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=404
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_13"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=424
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_14"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=444
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_15"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=464
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_16"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=484
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_17"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=504
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_18"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=364
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_11"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=384
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_12"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=404
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_13"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=424
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_14"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=444
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_15"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=464
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_16"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=484
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_17"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=504
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_18"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1142
+		y=344
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_10"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=344
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_10"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+"message button" {
+	object {
+		x=1160
+		y=504
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="119"
+}
+"message button" {
+	object {
+		x=1160
+		y=524
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="120"
+}
+"message button" {
+	object {
+		x=1231
+		y=504
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="219"
+}
+"message button" {
+	object {
+		x=1231
+		y=524
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="220"
+}
+byte {
+	object {
+		x=1142
+		y=524
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_19"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=524
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_19"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1076
+		y=464
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_16"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=484
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_17"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=504
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_18"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=524
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_19"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+text {
+	object {
+		x=341
+		y=121
+		width=50
+		height=16
+	}
+	"basic attribute" {
+		clr=0
+	}
+	textix="MON"
+	align="horiz. centered"
+}
+composite {
+	object {
+		x=358
+		y=142
+		width=12
+		height=198
+	}
+	"composite name"=""
+	children {
+		rectangle {
 			object {
-				x=7
-				y=697
-				width=30
-				height=20
+				x=358
+				y=142
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_30"
-				clr=14
-				bclr=50
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_0"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=717
-				width=30
-				height=20
+				x=358
+				y=162
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_31"
-				clr=14
-				bclr=1
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_1"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=737
-				width=30
-				height=20
+				x=358
+				y=182
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_32"
-				clr=14
-				bclr=50
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_2"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=757
-				width=30
-				height=20
+				x=358
+				y=202
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_33"
-				clr=14
-				bclr=1
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_3"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=777
-				width=30
-				height=20
+				x=358
+				y=222
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_34"
-				clr=14
-				bclr=50
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_4"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=797
-				width=30
-				height=20
+				x=358
+				y=242
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_35"
-				clr=14
-				bclr=1
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_5"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=817
-				width=30
-				height=20
+				x=358
+				y=262
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_36"
-				clr=14
-				bclr=50
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_6"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=837
-				width=30
-				height=20
+				x=358
+				y=282
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_37"
-				clr=14
-				bclr=1
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_7"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=857
-				width=30
-				height=20
+				x=358
+				y=302
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_38"
-				clr=14
-				bclr=50
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_8"
 			}
 		}
-		"text update" {
+		rectangle {
 			object {
-				x=7
-				y=877
-				width=30
-				height=20
+				x=358
+				y=322
+				width=12
+				height=18
 			}
-			monitor {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_LINE_39"
-				clr=14
-				bclr=1
+			"basic attribute" {
+				clr=60
 			}
-			align="horiz. centered"
-			format="string"
-			limits {
+			"dynamic attribute" {
+				vis="calc"
+				calc="A&1==1"
+				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_9"
 			}
 		}
 	}
 }
-text {
+rectangle {
+	object {
+		x=358
+		y=347
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_10"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=367
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_11"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=387
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_12"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=407
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_13"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=427
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_14"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=447
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_15"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=467
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_16"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=487
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_17"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=507
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_18"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=527
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_19"
+	}
+}
+byte {
+	object {
+		x=1076
+		y=572
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_21"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=592
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_22"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=612
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_23"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=632
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_24"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=652
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_25"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=552
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_20"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=672
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_26"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=692
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_27"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=712
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_28"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=732
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_29"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=778
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_31"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=798
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_32"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=818
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_33"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=838
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_34"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=858
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_35"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=758
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_30"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=878
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_36"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=898
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_37"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=918
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_38"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1076
+		y=938
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_39"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=1
+	ebit=1
+}
+byte {
+	object {
+		x=1142
+		y=572
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_21"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=592
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_22"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=612
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_23"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=632
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_24"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=652
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_25"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=552
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_20"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=672
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_26"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=692
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_27"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=712
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_28"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=732
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_29"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=778
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_31"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=798
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_32"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=818
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_33"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=838
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_34"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=858
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_35"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=758
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_30"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=878
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_36"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=898
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_37"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=918
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_38"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1142
+		y=938
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_39"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=2
+	ebit=2
+}
+byte {
+	object {
+		x=1212
+		y=572
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_21"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=592
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_22"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=612
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_23"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=632
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_24"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=652
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_25"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=552
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_20"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=672
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_26"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=692
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_27"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=712
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_28"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=732
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_29"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=778
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_31"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=798
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_32"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=818
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_33"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=838
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_34"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=858
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_35"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=758
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_30"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=878
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_36"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=898
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_37"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=918
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_38"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+byte {
+	object {
+		x=1212
+		y=938
+		width=17
+		height=18
+	}
+	monitor {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_39"
+		clr=30
+		bclr=3
+	}
+	direction="down"
+	sbit=3
+	ebit=3
+}
+"message button" {
+	object {
+		x=1160
+		y=552
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="121"
+}
+"message button" {
+	object {
+		x=1160
+		y=572
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="122"
+}
+"message button" {
+	object {
+		x=1160
+		y=592
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="123"
+}
+"message button" {
+	object {
+		x=1160
+		y=612
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="124"
+}
+"message button" {
+	object {
+		x=1160
+		y=632
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="125"
+}
+"message button" {
+	object {
+		x=1160
+		y=652
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="126"
+}
+"message button" {
+	object {
+		x=1160
+		y=672
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="127"
+}
+"message button" {
+	object {
+		x=1160
+		y=692
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="128"
+}
+"message button" {
+	object {
+		x=1160
+		y=712
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="129"
+}
+"message button" {
+	object {
+		x=1160
+		y=732
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="130"
+}
+"message button" {
+	object {
+		x=1160
+		y=758
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="131"
+}
+"message button" {
+	object {
+		x=1160
+		y=778
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="132"
+}
+"message button" {
 	object {
-		x=1067
-		y=61
-		width=69
+		x=1160
+		y=798
+		width=50
 		height=18
 	}
-	"basic attribute" {
-		clr=2
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
 	}
-	textix="RESET"
-	align="horiz. centered"
+	label="<ACCEPT"
+	release_msg="133"
 }
-composite {
+"message button" {
 	object {
-		x=1080
-		y=82
-		width=45
-		height=198
+		x=1160
+		y=818
+		width=50
+		height=18
 	}
-	"composite name"=""
-	children {
-		"message button" {
-			object {
-				x=1080
-				y=82
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=50
-			}
-			label="<<RESET"
-			release_msg="1"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=102
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=1
-			}
-			label="<<RESET"
-			release_msg="2"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=122
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=50
-			}
-			label="<<RESET"
-			release_msg="3"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=142
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=1
-			}
-			label="<<RESET"
-			release_msg="4"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=162
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=50
-			}
-			label="<<RESET"
-			release_msg="5"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=182
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=1
-			}
-			label="<<RESET"
-			release_msg="6"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=202
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=50
-			}
-			label="<<RESET"
-			release_msg="7"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=222
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=1
-			}
-			label="<<RESET"
-			release_msg="8"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=242
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=50
-			}
-			label="<<RESET"
-			release_msg="9"
-		}
-		"message button" {
-			object {
-				x=1080
-				y=262
-				width=45
-				height=18
-			}
-			control {
-				chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-				clr=14
-				bclr=1
-			}
-			label="<<RESET"
-			release_msg="10"
-		}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
 	}
+	label="<ACCEPT"
+	release_msg="134"
 }
 "message button" {
 	object {
-		x=1080
-		y=287
-		width=45
+		x=1160
+		y=838
+		width=50
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="11"
+	label="<ACCEPT"
+	release_msg="135"
 }
 "message button" {
 	object {
-		x=1080
-		y=307
-		width=45
+		x=1160
+		y=858
+		width=50
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="12"
+	label="<ACCEPT"
+	release_msg="136"
 }
 "message button" {
 	object {
-		x=1080
-		y=327
-		width=45
+		x=1160
+		y=878
+		width=50
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="13"
+	label="<ACCEPT"
+	release_msg="137"
 }
 "message button" {
 	object {
-		x=1080
-		y=347
-		width=45
+		x=1160
+		y=898
+		width=50
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="14"
+	label="<ACCEPT"
+	release_msg="138"
 }
 "message button" {
 	object {
-		x=1080
-		y=367
-		width=45
+		x=1160
+		y=918
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="<ACCEPT"
+	release_msg="139"
+}
+"message button" {
+	object {
+		x=1160
+		y=938
+		width=50
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="<ACCEPT"
+	release_msg="140"
+}
+"message button" {
+	object {
+		x=1231
+		y=552
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="221"
+}
+"message button" {
+	object {
+		x=1231
+		y=572
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="222"
+}
+"message button" {
+	object {
+		x=1231
+		y=592
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="223"
+}
+"message button" {
+	object {
+		x=1231
+		y=612
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="224"
+}
+"message button" {
+	object {
+		x=1231
+		y=632
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="225"
+}
+"message button" {
+	object {
+		x=1231
+		y=652
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="226"
+}
+"message button" {
+	object {
+		x=1231
+		y=672
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="227"
+}
+"message button" {
+	object {
+		x=1231
+		y=692
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="228"
+}
+"message button" {
+	object {
+		x=1231
+		y=712
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="229"
+}
+"message button" {
+	object {
+		x=1231
+		y=732
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=2
+	}
+	label="< MON"
+	release_msg="230"
+}
+"message button" {
+	object {
+		x=1231
+		y=758
+		width=40
+		height=18
+	}
+	control {
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
+		clr=14
+		bclr=51
+	}
+	label="< MON"
+	release_msg="231"
+}
+"message button" {
+	object {
+		x=1231
+		y=778
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="15"
+	label="< MON"
+	release_msg="232"
 }
 "message button" {
 	object {
-		x=1080
-		y=387
-		width=45
+		x=1231
+		y=798
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="16"
+	label="< MON"
+	release_msg="233"
 }
 "message button" {
 	object {
-		x=1080
-		y=407
-		width=45
+		x=1231
+		y=818
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="17"
+	label="< MON"
+	release_msg="234"
 }
 "message button" {
 	object {
-		x=1080
-		y=427
-		width=45
+		x=1231
+		y=838
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="18"
+	label="< MON"
+	release_msg="235"
 }
 "message button" {
 	object {
-		x=1080
-		y=447
-		width=45
+		x=1231
+		y=858
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="19"
+	label="< MON"
+	release_msg="236"
 }
 "message button" {
 	object {
-		x=1080
-		y=467
-		width=45
+		x=1231
+		y=878
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="20"
+	label="< MON"
+	release_msg="237"
 }
 "message button" {
 	object {
-		x=1080
-		y=492
-		width=45
+		x=1231
+		y=898
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="21"
+	label="< MON"
+	release_msg="238"
 }
 "message button" {
 	object {
-		x=1080
-		y=512
-		width=45
+		x=1231
+		y=918
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=1
+		bclr=51
 	}
-	label="<<RESET"
-	release_msg="22"
+	label="< MON"
+	release_msg="239"
 }
 "message button" {
 	object {
-		x=1080
-		y=532
-		width=45
+		x=1231
+		y=938
+		width=40
 		height=18
 	}
 	control {
 		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
 		clr=14
-		bclr=50
+		bclr=2
 	}
-	label="<<RESET"
-	release_msg="23"
+	label="< MON"
+	release_msg="240"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=552
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_20"
 	}
-	label="<<RESET"
-	release_msg="24"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=572
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_21"
 	}
-	label="<<RESET"
-	release_msg="25"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=592
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_22"
 	}
-	label="<<RESET"
-	release_msg="26"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=612
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_23"
 	}
-	label="<<RESET"
-	release_msg="27"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=632
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_24"
 	}
-	label="<<RESET"
-	release_msg="28"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=652
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_25"
 	}
-	label="<<RESET"
-	release_msg="29"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=672
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_26"
 	}
-	label="<<RESET"
-	release_msg="30"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
-		y=698
-		width=45
+		x=358
+		y=692
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_27"
 	}
-	label="<<RESET"
-	release_msg="31"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
-		y=718
-		width=45
+		x=358
+		y=712
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_28"
 	}
-	label="<<RESET"
-	release_msg="32"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
-		y=738
-		width=45
+		x=358
+		y=732
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_29"
 	}
-	label="<<RESET"
-	release_msg="33"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=758
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_30"
 	}
-	label="<<RESET"
-	release_msg="34"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=778
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_31"
 	}
-	label="<<RESET"
-	release_msg="35"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=798
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_32"
 	}
-	label="<<RESET"
-	release_msg="36"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=818
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_33"
 	}
-	label="<<RESET"
-	release_msg="37"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=838
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_34"
 	}
-	label="<<RESET"
-	release_msg="38"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=858
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=50
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_35"
 	}
-	label="<<RESET"
-	release_msg="39"
 }
-"message button" {
+rectangle {
 	object {
-		x=1080
+		x=358
 		y=878
-		width=45
+		width=12
 		height=18
 	}
-	control {
-		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_RESET_CHAN"
-		clr=14
-		bclr=1
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_36"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=898
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_37"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=918
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_38"
+	}
+}
+rectangle {
+	object {
+		x=358
+		y=938
+		width=12
+		height=18
+	}
+	"basic attribute" {
+		clr=60
+	}
+	"dynamic attribute" {
+		vis="calc"
+		calc="A&1==1"
+		chan="SITE_NAME:FEC-DCU_NODE_ID_SDF_BITS_39"
 	}
-	label="<<RESET"
-	release_msg="40"
 }
diff --git a/src/epics/util/fmseq.pl b/src/epics/util/fmseq.pl
index 18c1aed2ee692c3ade64b948b784df3994c60556..1f9a9913d707d8d8319fc26bff3c19a1a13372f1 100755
--- a/src/epics/util/fmseq.pl
+++ b/src/epics/util/fmseq.pl
@@ -899,12 +899,17 @@ foreach $i ( @names ) {
 # add msg and load coeff records
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_RELOAD\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_RESET_CHAN\")\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_MODIFY_CHAN\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_SAVE_CMD\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_RELOAD_STATUS\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_FULL_CNT\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_FILE_SET_CNT\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_UNMON_CNT\")\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_ALARM_CNT\")\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_CONFIRM\")\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_SELECT_SUM0\")\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_SELECT_SUM1\")\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_SELECT_SUM2\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_NAME\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_SAVE_AS_NAME\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_RELOAD_TIME\")\n";
@@ -912,6 +917,7 @@ print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_SAVE_TIME\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_SAVE_FILE\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_LOADED\")\n";
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_LOADED_EDB\")\n";
+print "grecord(stringout,\"%IFO%:FEC-${dcuId}_SDF_WC_STR\")\n";
 print "grecord(bo,\"%IFO%:FEC-${dcuId}_SDF_MON_ALL\")\n";
 print "{\n	field(ZNAM,\"MASK\")\n";
 print "		field(ONAM,\"ALL\")\n}\n";
@@ -928,6 +934,11 @@ print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_UNINIT_CNT\")\n";
 print "{\n	field(SCAN,\".5 second\")\n}\n";
 print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_TABLE_ENTRIES\")\n";
 print "{\n	field(SCAN,\".5 second\")\n}\n";
+print "grecord(mbbi,\"%IFO%:FEC-${dcuId}_SDF_WILDCARD\")\n";
+print "{\n	field(ZRVL,\"0\")\n";
+print "		field(ONVL,\"1\")\n";
+print "		field(ZRST,\"ALL\")\n";
+print "		field(TWST,\"WILDCARD\")\n}\n";
 print "grecord(mbbi,\"%IFO%:FEC-${dcuId}_SDF_SORT\")\n";
 print "{\n	field(ZRVL,\"0\")\n";
 print "		field(ONVL,\"1\")\n";
@@ -939,27 +950,7 @@ print "		field(ONST,\"CHANS NOT FOUND\")\n";
 print "		field(TWST,\"CHANS NOT INIT\")\n";
 print "		field(THST,\"CHANS NOT MON\")\n";
 print "		field(FRST,\"FILE READ ERRORS\")\n}\n";
-print "grecord(mbbi,\"%IFO%:FEC-${dcuId}_SDF_PAGE\")\n";
-print "{\n	field(ZRVL,\"0\")\n";
-print "		field(ONVL,\"1\")\n";
-print "		field(TWVL,\"2\")\n";
-print "		field(THVL,\"3\")\n";
-print "		field(FRVL,\"4\")\n";
-print "		field(FVVL,\"5\")\n";
-print "		field(SXVL,\"6\")\n";
-print "		field(SVVL,\"7\")\n";
-print "		field(EIVL,\"8\")\n";
-print "		field(NIVL,\"9\")\n";
-print "		field(ZRST,\"PAGE 1\")\n";
-print "		field(ONST,\"PAGE 2\")\n";
-print "		field(TWST,\"PAGE 3\")\n";
-print "		field(THST,\"PAGE 4\")\n";
-print "		field(FRST,\"PAGE 5\")\n";
-print "		field(FVST,\"PAGE 6\")\n";
-print "		field(SXST,\"PAGE 7\")\n";
-print "		field(SVST,\"PAGE 8\")\n";
-print "		field(EIST,\"PAGE 9\")\n";
-print "		field(NIST,\"PAGE 10\")\n}\n";
+print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_PAGE\")\n";
 print "grecord(mbbi,\"%IFO%:FEC-${dcuId}_SDF_SAVE_TYPE\")\n";
 print "{\n	field(ZRVL,\"0\")\n";
 print "		field(ONVL,\"1\")\n";
@@ -1002,6 +993,7 @@ for(my $ffn = 0;$ffn < 40; $ffn ++)
 	print "		field(FTVL,\"UCHAR\")\n";
 	print "}\n";
 	print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_LINE_$ffn\")\n";
+	print "grecord(ao,\"%IFO%:FEC-${dcuId}_SDF_BITS_$ffn\")\n";
 }
 print "grecord(stringout,\"%IFO%:FEC-${dcuId}_GRD_RB_STAT0\")\n";
 print "{\n	field(SCAN,\".5 second\")\n}\n";
diff --git a/src/epics/util/lib/medmGenGdsTp.pm b/src/epics/util/lib/medmGenGdsTp.pm
index 7c5c487ede8c716f8020875bd77ab392a449fcd0..d96261e1157e25a653e8cfe9aaab68f4db3f56e2 100644
--- a/src/epics/util/lib/medmGenGdsTp.pm
+++ b/src/epics/util/lib/medmGenGdsTp.pm
@@ -119,7 +119,7 @@ sub createGdsMedm
 	# Add BURT related display
 	$xpos = 562; $ypos = 106; $width = 160; $height = 18;
 	$mdlNamelc = lc($mdlName);
-	$relDisp = "$medmTarget\/$mdlNamelc\/$mdlName\_SDF_RESTORE.adl";
+	$relDisp = "$medmTarget\/$mdlNamelc\/$mdlName\_SDF_TABLE.adl";
         $medmdata .= ("CDS::medmGen::medmGenRelDisp") -> ($xpos,$ypos,$width,$height,$relDisp,$ecolors{white},$ecolors{blue},"SDF RESTORE");
 	# BURT Diffs Label
 	$xpos = 733; $ypos = 94; $width = 24; $height = 12;