├── .gitattributes
├── .gitignore
├── LICENSE
├── README.md
└── mappFramework
├── .gitignore
├── Diagnosis
├── Simulation
│ └── PC
│ │ ├── PackMLMgr.PVM
│ │ ├── RecipeMgr.PVM
│ │ └── UserXMgr.tc
└── UnitTest
│ └── PC_any
│ └── FileTest.PVM
├── Logical
├── ChineseHelp
│ ├── Package.pkg
│ └── mappFramework.chm
├── Global.typ
├── Global.var
├── Infrastructure
│ ├── AlarmX
│ │ ├── AlarmImportExport.py
│ │ ├── AlarmMgr
│ │ │ ├── AlarmHandling.st
│ │ │ ├── AlarmMgr.st
│ │ │ ├── AlarmMgr.typ
│ │ │ ├── AlarmMgr.var
│ │ │ ├── AlarmSamples.st
│ │ │ ├── ExecuteQuery.st
│ │ │ ├── HMIActions.st
│ │ │ └── IEC.prg
│ │ ├── Alarms.tmx
│ │ ├── Package.pkg
│ │ └── test_AlarmImportExport.py
│ ├── Audit
│ │ ├── AuditAlarms.tmx
│ │ ├── AuditMgr
│ │ │ ├── AuditMgr.st
│ │ │ ├── AuditMgr.typ
│ │ │ ├── AuditMgr.var
│ │ │ ├── ChangeConfiguration.st
│ │ │ ├── ExecuteQuery.st
│ │ │ ├── HMIActions.st
│ │ │ └── IEC.prg
│ │ ├── CommonText
│ │ │ ├── Package.pkg
│ │ │ ├── TxtBackupF.tmx
│ │ │ ├── TxtFileF.tmx
│ │ │ ├── TxtRecipeF.tmx
│ │ │ └── TxtUserF.tmx
│ │ ├── DisplayText
│ │ │ ├── Package.pkg
│ │ │ ├── TxtDatapoints.tmx
│ │ │ └── TxtEventF.tmx
│ │ ├── ExportedText
│ │ │ ├── Package.pkg
│ │ │ ├── TxtDatapoints.tmx
│ │ │ └── TxtEventF.tmx
│ │ └── Package.pkg
│ ├── Backup
│ │ ├── BackupAlarms.tmx
│ │ ├── BackupMgr
│ │ │ ├── BackupMgr.st
│ │ │ ├── BackupMgr.typ
│ │ │ ├── BackupMgr.var
│ │ │ ├── ChangeConfiguration.st
│ │ │ ├── HMIActions.st
│ │ │ └── IEC.prg
│ │ └── Package.pkg
│ ├── File
│ │ ├── FileAlarms.tmx
│ │ ├── FileMgr
│ │ │ ├── FIFOOperations.st
│ │ │ ├── FileMgr.st
│ │ │ ├── FileMgr.typ
│ │ │ ├── FileMgr.var
│ │ │ ├── HMIActions.st
│ │ │ └── IEC.prg
│ │ └── Package.pkg
│ ├── LICENSE.txt
│ ├── PackML
│ │ ├── PackMLAlarms.tmx
│ │ ├── PackMLMgr
│ │ │ ├── HMIActions.st
│ │ │ ├── IEC.prg
│ │ │ ├── LocalFunctions.fun
│ │ │ ├── PackMLBaseModel.st
│ │ │ ├── PackMLMgr.st
│ │ │ ├── PackMLMgr.typ
│ │ │ ├── PackMLMgr.var
│ │ │ ├── StateInitialize.st
│ │ │ └── StateMachine.st
│ │ └── Package.pkg
│ ├── Package.pkg
│ ├── Project.language
│ ├── Recipe
│ │ ├── Package.pkg
│ │ ├── RecipeAlarms.tmx
│ │ ├── RecipeMgr
│ │ │ ├── HMIActions.st
│ │ │ ├── IEC.prg
│ │ │ ├── RecipeMgr.st
│ │ │ ├── RecipeMgr.typ
│ │ │ └── RecipeMgr.var
│ │ └── RecipeParTexts.tmx
│ ├── Report
│ │ ├── Package.pkg
│ │ ├── ReportAlarms.tmx
│ │ ├── ReportMgr
│ │ │ ├── HMIActions.st
│ │ │ ├── IEC.prg
│ │ │ ├── ReportMgr.st
│ │ │ ├── ReportMgr.typ
│ │ │ └── ReportMgr.var
│ │ └── ReportText.tmx
│ ├── Usb
│ │ ├── Package.pkg
│ │ └── UsbMgr
│ │ │ ├── IEC.prg
│ │ │ ├── UsbMgr.st
│ │ │ ├── UsbMgr.typ
│ │ │ └── UsbMgr.var
│ ├── UserX
│ │ ├── Package.pkg
│ │ ├── UserXAlarms.tmx
│ │ └── UserXMgr
│ │ │ ├── HMIAction.st
│ │ │ ├── IEC.prg
│ │ │ ├── UserXMgr.st
│ │ │ ├── UserXMgr.typ
│ │ │ └── UserXMgr.var
│ ├── VC4
│ │ ├── AlarmX
│ │ │ ├── AlarmImportExport.py
│ │ │ ├── AlarmMgr
│ │ │ │ ├── AlarmHandling.st
│ │ │ │ ├── AlarmMgr.st
│ │ │ │ ├── AlarmMgr.typ
│ │ │ │ ├── AlarmMgr.var
│ │ │ │ ├── AlarmSamples.st
│ │ │ │ ├── ExecuteQuery.st
│ │ │ │ ├── HMIActions.st
│ │ │ │ └── IEC.prg
│ │ │ ├── Alarms.tmx
│ │ │ └── Package.pkg
│ │ ├── Audit
│ │ │ ├── AuditAlarms.tmx
│ │ │ ├── AuditMgr
│ │ │ │ ├── AuditMgr.st
│ │ │ │ ├── AuditMgr.typ
│ │ │ │ ├── AuditMgr.var
│ │ │ │ ├── ChangeConfiguration.st
│ │ │ │ ├── ExecuteQuery.st
│ │ │ │ ├── HMIActions.st
│ │ │ │ └── IEC.prg
│ │ │ ├── CommonText
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── TxtBackupF.tmx
│ │ │ │ ├── TxtFileF.tmx
│ │ │ │ ├── TxtRecipeF.tmx
│ │ │ │ └── TxtUserF.tmx
│ │ │ ├── DisplayText
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── TxtDatapoints.tmx
│ │ │ │ └── TxtEventF.tmx
│ │ │ ├── ExportedText
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── TxtDatapoints.tmx
│ │ │ │ └── TxtEventF.tmx
│ │ │ └── Package.pkg
│ │ ├── Backup
│ │ │ ├── BackupAlarms.tmx
│ │ │ ├── BackupMgr
│ │ │ │ ├── BackupMgr.st
│ │ │ │ ├── BackupMgr.typ
│ │ │ │ ├── BackupMgr.var
│ │ │ │ ├── ChangeConfiguration.st
│ │ │ │ ├── HMIActions.st
│ │ │ │ └── IEC.prg
│ │ │ └── Package.pkg
│ │ ├── File
│ │ │ ├── FileAlarms.tmx
│ │ │ ├── FileMgr
│ │ │ │ ├── FIFOOperations.st
│ │ │ │ ├── FileMgr.st
│ │ │ │ ├── FileMgr.typ
│ │ │ │ ├── FileMgr.var
│ │ │ │ ├── HMIActions.st
│ │ │ │ └── IEC.prg
│ │ │ └── Package.pkg
│ │ ├── PackML
│ │ │ ├── PackMLAlarms.tmx
│ │ │ ├── PackMLMgr
│ │ │ │ ├── IEC.prg
│ │ │ │ ├── PackMLMgr.st
│ │ │ │ ├── PackMLMgr.typ
│ │ │ │ ├── PackMLMgr.var
│ │ │ │ └── StateMachine.st
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeAlarms.tmx
│ │ │ └── RecipeMgr
│ │ │ │ ├── HMIActions.st
│ │ │ │ ├── IEC.prg
│ │ │ │ ├── RecipeMgr.st
│ │ │ │ ├── RecipeMgr.typ
│ │ │ │ └── RecipeMgr.var
│ │ ├── Report
│ │ │ ├── Package.pkg
│ │ │ ├── ReportAlarms.tmx
│ │ │ ├── ReportMgr
│ │ │ │ ├── HMIActions.st
│ │ │ │ ├── IEC.prg
│ │ │ │ ├── ReportMgr.st
│ │ │ │ ├── ReportMgr.typ
│ │ │ │ └── ReportMgr.var
│ │ │ └── ReportText.tmx
│ │ ├── Usb
│ │ │ ├── Package.pkg
│ │ │ └── UsbMgr
│ │ │ │ ├── IEC.prg
│ │ │ │ ├── UsbMgr.st
│ │ │ │ ├── UsbMgr.typ
│ │ │ │ └── UsbMgr.var
│ │ ├── UserX
│ │ │ ├── Package.pkg
│ │ │ ├── UserXAlarms.tmx
│ │ │ └── UserXMgr
│ │ │ │ ├── HMIAction.st
│ │ │ │ ├── IEC.prg
│ │ │ │ ├── UserXMgr.st
│ │ │ │ ├── UserXMgr.typ
│ │ │ │ └── UserXMgr.var
│ │ └── mappFrameworkVC4.var
│ └── mappFrameworkGlobal.var
├── Libraries
│ ├── ArEventLog
│ │ ├── ArEventLog.fun
│ │ ├── ArEventLog.typ
│ │ ├── ArEventLog.var
│ │ ├── SG4
│ │ │ └── ArEventLog.h
│ │ └── binary.lby
│ ├── ArTextSys
│ │ ├── ArTextSys.fun
│ │ ├── ArTextSys.typ
│ │ ├── ArTextSys.var
│ │ ├── SG4
│ │ │ └── ArTextSys.h
│ │ └── binary.lby
│ ├── AsARCfg
│ │ ├── AsARCfg.fun
│ │ ├── AsARCfg.typ
│ │ ├── AsARCfg.var
│ │ ├── SG3
│ │ │ └── AsARCfg.h
│ │ ├── SG4
│ │ │ └── AsARCfg.h
│ │ └── binary.lby
│ ├── AsBrStr
│ │ ├── AsBrStr.fun
│ │ ├── AsBrStr.typ
│ │ ├── AsBrStr.var
│ │ ├── SG3
│ │ │ └── AsBrStr.h
│ │ ├── SG4
│ │ │ └── AsBrStr.h
│ │ └── binary.lby
│ ├── AsBrWStr
│ │ ├── AsBrWStr.fun
│ │ ├── AsBrWStr.typ
│ │ ├── AsBrWStr.var
│ │ ├── SG3
│ │ │ └── AsBrWStr.h
│ │ ├── SG4
│ │ │ └── AsBrWStr.h
│ │ └── binary.lby
│ ├── AsIODiag
│ │ ├── AsIODiag.fun
│ │ ├── AsIODiag.typ
│ │ ├── AsIODiag.var
│ │ ├── SG4
│ │ │ └── AsIODiag.h
│ │ └── binary.lby
│ ├── AsIecCon
│ │ ├── AsIecCon.fun
│ │ ├── AsIecCon.typ
│ │ ├── AsIecCon.var
│ │ ├── SG3
│ │ │ └── AsIecCon.h
│ │ ├── SG4
│ │ │ └── AsIecCon.h
│ │ └── binary.lby
│ ├── AsTCP
│ │ ├── AsTCP.fun
│ │ ├── AsTCP.typ
│ │ ├── AsTCP.var
│ │ ├── SG3
│ │ │ └── AsTCP.h
│ │ ├── SG4
│ │ │ └── AsTCP.h
│ │ └── binary.lby
│ ├── AsUSB
│ │ ├── AsUSB.fun
│ │ ├── AsUSB.typ
│ │ ├── AsUSB.var
│ │ ├── SG4
│ │ │ └── AsUSB.h
│ │ └── binary.lby
│ ├── AsZip
│ │ ├── AsZip.fun
│ │ ├── AsZip.typ
│ │ ├── AsZip.var
│ │ ├── SG4
│ │ │ └── AsZip.h
│ │ └── binary.lby
│ ├── CoTrace
│ │ ├── CoTrace.fun
│ │ ├── CoTrace.typ
│ │ ├── CoTrace.var
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── CoTrace.br
│ │ │ │ └── libCoTrace.a
│ │ │ ├── CoTrace.h
│ │ │ └── IA32
│ │ │ │ ├── CoTrace.br
│ │ │ │ └── libCoTrace.a
│ │ └── binary.lby
│ ├── FileIO
│ │ ├── FileIO.fun
│ │ ├── FileIO.typ
│ │ ├── FileIO.var
│ │ ├── SG4
│ │ │ └── FileIO.h
│ │ └── binary.lby
│ ├── IecCheck
│ │ ├── IEC.lby
│ │ ├── IecCheck.fun
│ │ └── IecCheck.st
│ ├── LoggingLib
│ │ ├── ANSIC.lby
│ │ ├── AsLoggerFile.c
│ │ ├── AsLoggerInternal.h
│ │ ├── AsLoggerLogBook.c
│ │ ├── AsLoggerServer.c
│ │ ├── LoggingLib.c
│ │ ├── LoggingLib.fun
│ │ ├── LoggingLib.typ
│ │ ├── LoggingLib.var
│ │ └── LoggingLibText.tmx
│ ├── McAcpAx
│ │ ├── McAcpAx.fun
│ │ ├── McAcpAx.typ
│ │ ├── McAcpAx.var
│ │ ├── McAcpAxCfg.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── McAcpAx.br
│ │ │ │ └── libMcAcpAx.a
│ │ │ ├── IA32
│ │ │ │ ├── McAcpAx.br
│ │ │ │ └── libMcAcpAx.a
│ │ │ └── McAcpAx.h
│ │ └── binary.lby
│ ├── McAcpPar
│ │ ├── McAcpPar.var
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── McAcpPar.br
│ │ │ │ └── libMcAcpPar.a
│ │ │ ├── IA32
│ │ │ │ ├── McAcpPar.br
│ │ │ │ └── libMcAcpPar.a
│ │ │ └── McAcpPar.h
│ │ └── binary.lby
│ ├── McAxis
│ │ ├── McAxis.fun
│ │ ├── McAxis.typ
│ │ ├── McAxis.var
│ │ ├── McAxisCfg.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── McAxis.br
│ │ │ │ └── libMcAxis.a
│ │ │ ├── IA32
│ │ │ │ ├── McAxis.br
│ │ │ │ └── libMcAxis.a
│ │ │ └── McAxis.h
│ │ └── binary.lby
│ ├── McBase
│ │ ├── McBase.fun
│ │ ├── McBase.typ
│ │ ├── McBase.var
│ │ ├── McBaseCfg.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── McBase.br
│ │ │ │ └── libMcBase.a
│ │ │ ├── IA32
│ │ │ │ ├── McBase.br
│ │ │ │ └── libMcBase.a
│ │ │ └── McBase.h
│ │ └── binary.lby
│ ├── McPureVAx
│ │ ├── McPureVAx.fun
│ │ ├── McPureVAx.typ
│ │ ├── McPureVAx.var
│ │ ├── McPureVAxCfg.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── McPureVAx.br
│ │ │ │ └── libMcPureVAx.a
│ │ │ ├── IA32
│ │ │ │ ├── McPureVAx.br
│ │ │ │ └── libMcPureVAx.a
│ │ │ └── McPureVAx.h
│ │ └── binary.lby
│ ├── MpAlarmX
│ │ ├── Binary.lby
│ │ ├── MpAlarmX.fun
│ │ ├── MpAlarmX.typ
│ │ ├── MpAlarmXError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpAlarmX.br
│ │ │ └── libMpAlarmX.a
│ │ │ ├── IA32
│ │ │ ├── MpAlarmX.br
│ │ │ └── libMpAlarmX.a
│ │ │ └── MpAlarmX.h
│ ├── MpAudit
│ │ ├── Binary.lby
│ │ ├── MpAudit.fun
│ │ ├── MpAudit.typ
│ │ ├── MpAuditAlarm.typ
│ │ ├── MpAuditError.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── MpAudit.br
│ │ │ │ └── libMpAudit.a
│ │ │ ├── IA32
│ │ │ │ ├── MpAudit.br
│ │ │ │ └── libMpAudit.a
│ │ │ └── MpAudit.h
│ │ ├── TxtCustom.tmx
│ │ ├── TxtDatapoints.tmx
│ │ ├── TxtEvent.tmx
│ │ ├── TxtEventF.tmx
│ │ ├── TxtRecipe.tmx
│ │ ├── TxtRecipeF.tmx
│ │ ├── TxtUser.tmx
│ │ └── TxtUserF.tmx
│ ├── MpAxis
│ │ ├── MpAxis.fun
│ │ ├── MpAxis.typ
│ │ ├── MpAxisError.typ
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── MpAxis.br
│ │ │ │ └── libMpAxis.a
│ │ │ ├── IA32
│ │ │ │ ├── MpAxis.br
│ │ │ │ └── libMpAxis.a
│ │ │ └── MpAxis.h
│ │ └── binary.lby
│ ├── MpBackup
│ │ ├── Binary.lby
│ │ ├── MpBackup.fun
│ │ ├── MpBackup.typ
│ │ ├── MpBackupAlarm.typ
│ │ ├── MpBackupError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpBackup.br
│ │ │ └── libMpBackup.a
│ │ │ ├── IA32
│ │ │ ├── MpBackup.br
│ │ │ └── libMpBackup.a
│ │ │ └── MpBackup.h
│ ├── MpBase
│ │ ├── Binary.lby
│ │ ├── Common_EventLog.tmx
│ │ ├── MpBase.fun
│ │ ├── MpBase.typ
│ │ ├── MpBase.var
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpBase.br
│ │ │ └── libMpBase.a
│ │ │ ├── IA32
│ │ │ ├── MpBase.br
│ │ │ └── libMpBase.a
│ │ │ └── MpBase.h
│ ├── MpCom
│ │ ├── Binary.lby
│ │ ├── MpCom.fun
│ │ ├── MpCom.typ
│ │ ├── MpCom.var
│ │ ├── MpComError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpCom.br
│ │ │ └── libMpCom.a
│ │ │ ├── IA32
│ │ │ ├── MpCom.br
│ │ │ └── libMpCom.a
│ │ │ └── MpCom.h
│ ├── MpFile
│ │ ├── Binary.lby
│ │ ├── MpFile.fun
│ │ ├── MpFile.typ
│ │ ├── MpFileAlarm.typ
│ │ ├── MpFileError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpFile.br
│ │ │ └── libMpFile.a
│ │ │ ├── IA32
│ │ │ ├── MpFile.br
│ │ │ └── libMpFile.a
│ │ │ └── MpFile.h
│ ├── MpPackML
│ │ ├── Binary.lby
│ │ ├── MpPackML.fun
│ │ ├── MpPackML.typ
│ │ ├── MpPackMLAlarm.typ
│ │ ├── MpPackMLError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpPackML.br
│ │ │ └── libMpPackML.a
│ │ │ ├── IA32
│ │ │ ├── MpPackML.br
│ │ │ └── libMpPackML.a
│ │ │ └── MpPackML.h
│ ├── MpRecipe
│ │ ├── Binary.lby
│ │ ├── MpRecipe.fun
│ │ ├── MpRecipe.typ
│ │ ├── MpRecipeAlarm.typ
│ │ ├── MpRecipeError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpRecipe.br
│ │ │ └── libMpRecipe.a
│ │ │ ├── IA32
│ │ │ ├── MpRecipe.br
│ │ │ └── libMpRecipe.a
│ │ │ └── MpRecipe.h
│ ├── MpReport
│ │ ├── Binary.lby
│ │ ├── MpReport.fun
│ │ ├── MpReport.typ
│ │ ├── MpReportAlarm.typ
│ │ ├── MpReportError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpReport.br
│ │ │ └── libMpReport.a
│ │ │ ├── IA32
│ │ │ ├── MpReport.br
│ │ │ └── libMpReport.a
│ │ │ └── MpReport.h
│ ├── MpServer
│ │ ├── Binary.lby
│ │ ├── Constants.var
│ │ ├── MpServer.fun
│ │ ├── MpServer_EventLog.tmx
│ │ ├── SG4
│ │ │ ├── ARM
│ │ │ │ ├── MpServer.br
│ │ │ │ └── libMpServer.a
│ │ │ ├── IA32
│ │ │ │ ├── MpServer.br
│ │ │ │ └── libMpServer.a
│ │ │ └── MpServer.h
│ │ └── Types.typ
│ ├── MpUserX
│ │ ├── Binary.lby
│ │ ├── MpUserX.fun
│ │ ├── MpUserX.typ
│ │ ├── MpUserXAlarm.typ
│ │ ├── MpUserXError.typ
│ │ └── SG4
│ │ │ ├── ARM
│ │ │ ├── MpUserX.br
│ │ │ └── libMpUserX.a
│ │ │ ├── IA32
│ │ │ ├── MpUserX.br
│ │ │ └── libMpUserX.a
│ │ │ └── MpUserX.h
│ ├── Package.pkg
│ ├── astime
│ │ ├── SG3
│ │ │ └── astime.h
│ │ ├── SG4
│ │ │ └── astime.h
│ │ ├── astime.fun
│ │ ├── astime.typ
│ │ ├── astime.var
│ │ └── binary.lby
│ ├── operator
│ │ ├── SG3
│ │ │ └── operator.h
│ │ ├── SG4
│ │ │ └── operator.h
│ │ ├── binary.lby
│ │ ├── operator.fun
│ │ ├── operator.typ
│ │ └── operator.var
│ ├── runtime
│ │ ├── SG3
│ │ │ └── runtime.h
│ │ ├── SG4
│ │ │ └── runtime.h
│ │ ├── binary.lby
│ │ ├── runtime.fun
│ │ ├── runtime.typ
│ │ └── runtime.var
│ ├── standard
│ │ ├── SG3
│ │ │ └── standard.h
│ │ ├── SG4
│ │ │ └── standard.h
│ │ ├── binary.lby
│ │ ├── standard.fun
│ │ ├── standard.typ
│ │ └── standard.var
│ └── sys_lib
│ │ ├── SG3
│ │ └── sys_lib.h
│ │ ├── SG4
│ │ └── sys_lib.h
│ │ ├── binary.lby
│ │ ├── sys_lib.fun
│ │ ├── sys_lib.typ
│ │ └── sys_lib.var
├── MachineControl
│ ├── AppAxis_1
│ │ ├── AppAxis_1
│ │ │ ├── AutomaticCommand.st
│ │ │ ├── AxisControlModes.st
│ │ │ ├── AxisMgr.st
│ │ │ ├── IEC.prg
│ │ │ ├── LocalFunctions.fun
│ │ │ ├── ManualCommand.st
│ │ │ ├── SimulationControl.st
│ │ │ └── Variables.var
│ │ ├── AppAxis_1_Alarms.tmx
│ │ ├── AppAxis_1_Info.tmx
│ │ └── Package.pkg
│ ├── AxisReferencedFiles
│ │ ├── AxisMgr.typ
│ │ ├── AxisMgr.var
│ │ ├── AxisStateMachine.st
│ │ ├── ChangeConfiguration.st
│ │ ├── Package.pkg
│ │ └── Recipe.st
│ ├── AxisTemplate
│ │ ├── AxisAlarms.tmx
│ │ ├── AxisInfo.tmx
│ │ ├── AxisMgr
│ │ │ ├── AutomaticCommand.st
│ │ │ ├── AxisControlModes.st
│ │ │ ├── AxisMgr.st
│ │ │ ├── IEC.prg
│ │ │ ├── LocalFunctions.fun
│ │ │ ├── ManualCommand.st
│ │ │ ├── SimulationControl.st
│ │ │ └── Variables.var
│ │ └── Package.pkg
│ ├── LICENSE.txt
│ └── Package.pkg
├── Package.pkg
├── UnitTest
│ ├── AlarmX
│ │ ├── AlarmXUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AlarmExamples.c
│ │ │ ├── Set_AlarmMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── AppAxis_1
│ │ ├── AppAxisUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AutomaticTests.c
│ │ │ ├── Set_ManualTests.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Audit
│ │ ├── AuditTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AuditMgr.c
│ │ │ ├── Types.typ
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Backup
│ │ ├── BackupUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_BackupMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Common
│ │ ├── CommonUT
│ │ │ ├── ANSIC.prg
│ │ │ ├── CommonTypes.typ
│ │ │ ├── CommonVariables.var
│ │ │ ├── Set_Common.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ └── testSuite.c
│ │ └── Package.pkg
│ ├── File
│ │ ├── FileUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_FileMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Libraries
│ │ ├── Package.pkg
│ │ ├── UnitTest
│ │ │ ├── ANSIC.lby
│ │ │ ├── SG4
│ │ │ │ ├── Arm
│ │ │ │ │ ├── AssertImpl.c.o
│ │ │ │ │ ├── TestCaller.c.o
│ │ │ │ │ ├── TestCase.c.o
│ │ │ │ │ ├── TestResult.c.o
│ │ │ │ │ └── utRunnerTestSuite.c.o
│ │ │ │ ├── AssertImpl.c.o
│ │ │ │ ├── TestCaller.c.o
│ │ │ │ ├── TestCase.c.o
│ │ │ │ ├── TestResult.c.o
│ │ │ │ └── utRunnerTestSuite.c.o
│ │ │ ├── THIRDPARTYLICENSEREADME
│ │ │ ├── UnitTest.h
│ │ │ └── include
│ │ │ │ ├── AssertImpl.h
│ │ │ │ ├── Asserts.hpp
│ │ │ │ ├── HelperMacro.h
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── Test.h
│ │ │ │ ├── TestCaller.h
│ │ │ │ ├── TestCase.h
│ │ │ │ ├── TestListener.h
│ │ │ │ ├── TestResult.h
│ │ │ │ └── utRunner.h
│ │ ├── UtMgr
│ │ │ ├── Binary.lby
│ │ │ ├── SG4
│ │ │ │ ├── Arm
│ │ │ │ │ ├── UtMgr.br
│ │ │ │ │ └── libUtMgr.a
│ │ │ │ ├── UtMgr.br
│ │ │ │ ├── UtMgr.h
│ │ │ │ └── libUtMgr.a
│ │ │ ├── THIRDPARTYLICENSEREADME
│ │ │ ├── UtMgr.fun
│ │ │ ├── UtMgr.typ
│ │ │ └── UtMgr.var
│ │ ├── UtWs
│ │ │ ├── Binary.lby
│ │ │ ├── SG4
│ │ │ │ ├── Arm
│ │ │ │ │ ├── UtWs.br
│ │ │ │ │ └── libUtWs.a
│ │ │ │ ├── UtWs.br
│ │ │ │ ├── UtWs.h
│ │ │ │ └── libUtWs.a
│ │ │ └── UtWs.fun
│ │ └── snprintf
│ │ │ ├── Binary.lby
│ │ │ ├── SG3
│ │ │ ├── libsnprintf.a
│ │ │ ├── snprintf.br
│ │ │ └── snprintf.h
│ │ │ ├── SG4
│ │ │ ├── Arm
│ │ │ │ ├── libsnprintf.a
│ │ │ │ └── snprintf.br
│ │ │ ├── libsnprintf.a
│ │ │ ├── snprintf.br
│ │ │ └── snprintf.h
│ │ │ ├── SGC
│ │ │ ├── libsnprintf.a
│ │ │ ├── snprintf.br
│ │ │ └── snprintf.h
│ │ │ ├── snprintf.fun
│ │ │ ├── snprintf.typ
│ │ │ └── snprintf.var
│ ├── Package.pkg
│ ├── Recipe
│ │ ├── Package.pkg
│ │ └── RecipeMgrUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_RecipeMachineSettings.c
│ │ │ ├── Set_RecipeParameters.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ ├── testSuite.h
│ │ │ └── variables.var
│ ├── Report
│ │ ├── Package.pkg
│ │ └── ReportUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_ReportMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ ├── Samples
│ │ ├── Framework_Extension_With_Custom_Asserts
│ │ │ ├── LibAssert1
│ │ │ │ ├── ANSIC.lby
│ │ │ │ ├── LibAssert1.h
│ │ │ │ ├── LibAssert1_REAL_ArrayAsserts.c
│ │ │ │ ├── LibAssert1_REAL_ArrayAsserts.h
│ │ │ │ ├── LibAssert1_ThresholdAssert.c
│ │ │ │ └── LibAssert1_ThresholdAssert.h
│ │ │ ├── Package.pkg
│ │ │ └── SPL_AssertsEx
│ │ │ │ ├── ANSIC.prg
│ │ │ │ ├── README.txt
│ │ │ │ ├── autoGeneratedFile.c
│ │ │ │ ├── testSet_AssertsExt.c
│ │ │ │ ├── testSuite.c
│ │ │ │ ├── testSuite.var
│ │ │ │ └── varAssertExt.var
│ │ ├── Framework_Features
│ │ │ ├── Package.pkg
│ │ │ ├── SPL_Asserts
│ │ │ │ ├── ANSIC.prg
│ │ │ │ ├── README.txt
│ │ │ │ ├── autoGeneratedFile.c
│ │ │ │ ├── testSet_Asserts.c
│ │ │ │ ├── testSuite.c
│ │ │ │ ├── testSuite.var
│ │ │ │ └── varAsserts.var
│ │ │ └── SPL_Behavior
│ │ │ │ ├── ANSIC.prg
│ │ │ │ ├── ControlFlow
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── test_SetComplete.c
│ │ │ │ ├── test_SetTestCases.c
│ │ │ │ ├── test_SetTestCases_SetSetup_SetTeardown.c
│ │ │ │ └── test_SetTestCases_TestSetup_TestTeardown.c
│ │ │ │ ├── README.txt
│ │ │ │ ├── TestBusy_Asyncronous
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── TestBusy_Asyncronous.c
│ │ │ │ └── TestBusy_Asyncronous_with_CyclicSet.c
│ │ │ │ ├── TestBusy_AsyncronousVariables.var
│ │ │ │ ├── autoGeneratedFile.c
│ │ │ │ ├── controlFlowVariables.var
│ │ │ │ ├── iHelperFunction.c
│ │ │ │ ├── iHelperFunction.h
│ │ │ │ ├── iPrototypes.h
│ │ │ │ ├── testSuite.c
│ │ │ │ └── testSuite.var
│ │ ├── Package.pkg
│ │ └── Tests_Program
│ │ │ ├── Package.pkg
│ │ │ ├── SPLMyCalc
│ │ │ ├── IEC.lby
│ │ │ ├── SPLMyCalc.fun
│ │ │ ├── SPLMyCalc.st
│ │ │ ├── SPLMyCalc.typ
│ │ │ └── SPLMyCalc.var
│ │ │ └── Tests_MyCalcLib_C
│ │ │ ├── Package.pkg
│ │ │ ├── SPL_CalcTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSet_MyCalcLib_Addition.c
│ │ │ ├── testSet_MyCalcLib_Mult_Div.c
│ │ │ ├── testSet_MyCalcLib_Subtraction.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ │ └── SPL_CalcTest_Variants
│ │ │ ├── ANSIC.prg
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSet_MyCalcLib_Subtraction.c
│ │ │ ├── testSet_MyCalcLib_Subtraction_variantA.c
│ │ │ ├── testSet_MyCalcLib_Subtraction_variantB.c
│ │ │ ├── testSet_MyCalcLib_Subtraction_variantC.c
│ │ │ ├── testSet_MyCalcLib_Subtraction_variantD.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ ├── Templates
│ │ ├── HelperTool_Supported
│ │ │ ├── Package.pkg
│ │ │ ├── Steps.txt
│ │ │ ├── TestSet_Templates
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── Set_Complete.c
│ │ │ │ ├── Set_SetupTeardown.c
│ │ │ │ └── Set_Testcases.c
│ │ │ ├── Update_TestPrograms_in_current_location.bat
│ │ │ └── utTemplate_automated
│ │ │ │ ├── ANSIC.prg
│ │ │ │ ├── autoGeneratedFile.c
│ │ │ │ ├── testSuite.c
│ │ │ │ └── variables.var
│ │ ├── NoToolSupport
│ │ │ ├── Package.pkg
│ │ │ ├── TestSet_Templates
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── Set_Complete.c
│ │ │ │ ├── Set_SetupTeardown.c
│ │ │ │ └── Set_Testcases.c
│ │ │ └── utTemplate_manual
│ │ │ │ ├── ANSIC.prg
│ │ │ │ ├── FixtureOfTestSets.c
│ │ │ │ ├── testSuite.c
│ │ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Update_TestPrograms_in_current_location.bat
│ ├── Usb
│ │ └── Package.pkg
│ └── UserX
│ │ ├── Package.pkg
│ │ └── UserXUnitTest
│ │ ├── ANSIC.prg
│ │ ├── Set_UserXMgr.c
│ │ ├── autoGeneratedFile.c
│ │ ├── testSuite.c
│ │ └── variables.var
├── UnitTestVC4
│ ├── AlarmX
│ │ ├── AlarmXUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AlarmExamples.c
│ │ │ ├── Set_AlarmMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── AppAxis_1
│ │ ├── AppAxisUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AutomaticTests.c
│ │ │ ├── Set_ManualTests.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Audit
│ │ ├── AuditTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_AuditMgr.c
│ │ │ ├── Types.typ
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Backup
│ │ ├── BackupUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_BackupMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Common
│ │ ├── CommonUT
│ │ │ ├── ANSIC.prg
│ │ │ ├── CommonTypes.typ
│ │ │ ├── CommonVariables.var
│ │ │ ├── Set_Common.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ └── testSuite.c
│ │ └── Package.pkg
│ ├── File
│ │ ├── FileUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_FileMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ │ └── Package.pkg
│ ├── Package.pkg
│ ├── Recipe
│ │ ├── Package.pkg
│ │ └── RecipeMgrUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_RecipeMachineSettings.c
│ │ │ ├── Set_RecipeParameters.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ ├── testSuite.h
│ │ │ └── variables.var
│ ├── Report
│ │ ├── Package.pkg
│ │ └── ReportUnitTest
│ │ │ ├── ANSIC.prg
│ │ │ ├── Set_ReportMgr.c
│ │ │ ├── autoGeneratedFile.c
│ │ │ ├── testSuite.c
│ │ │ └── variables.var
│ ├── Update_TestPrograms_in_current_location.bat
│ ├── Usb
│ │ └── Package.pkg
│ └── UserX
│ │ ├── Package.pkg
│ │ └── UserXUnitTest
│ │ ├── ANSIC.prg
│ │ ├── Set_UserXMgr.c
│ │ ├── autoGeneratedFile.c
│ │ ├── testSuite.c
│ │ └── variables.var
├── UserPartition
│ ├── Axis
│ │ ├── Package.pkg
│ │ ├── SLO_Pos.tracecfg
│ │ └── SLO_Speed.tracecfg
│ ├── Package.pkg
│ ├── Recipe
│ │ ├── CSVformat
│ │ │ ├── Default.par
│ │ │ ├── Machine.mcfg
│ │ │ └── Package.pkg
│ │ ├── Default.par
│ │ ├── Machine.mcfg
│ │ ├── Package.pkg
│ │ └── XMLformat
│ │ │ ├── Default.par
│ │ │ ├── Machine.mcfg
│ │ │ └── Package.pkg
│ └── Report
│ │ ├── AdvancedReport_DE.pdf
│ │ ├── AdvancedReport_EN.pdf
│ │ ├── Images
│ │ ├── B&R_Logo_Screen_RGB_25px.jpg
│ │ ├── B&R_Logo_Screen_RGB_29px.jpg
│ │ ├── B&R_Logo_Screen_RGB_33px.jpg
│ │ ├── B&R_Logo_Screen_RGB_B&R_Logo_Tagline_at_the_side-01.jpg
│ │ ├── B&R_Logo_Screen_RGB_HD.jpg
│ │ ├── B&R_Logo_Tagline_below_RGB_HD.jpg
│ │ ├── B&R_Logo_Tagline_below_Screen_RGB.jpg
│ │ ├── B&R_Logo_Tagline_separate_Screen_RGB_01.jpg
│ │ ├── B&R_Logo_Tagline_separate_Screen_RGB_02.jpg
│ │ ├── B&R_Logo_Tagline_separate_Screen_RGB_HD-02.jpg
│ │ ├── B&R_Logo_Tagline_separate_Screen_RGB_HD.jpg
│ │ ├── LogoWithTag.jpg
│ │ ├── Package.pkg
│ │ └── SmallLogo.jpg
│ │ ├── Package.pkg
│ │ ├── SimpleReport_DE.pdf
│ │ └── SimpleReport_EN.pdf
├── VC4
│ ├── Package.pkg
│ └── mappFrameworkVisu
│ │ ├── BitmapGroups
│ │ ├── MpAlarmAcknowledgeState.bmgrp
│ │ ├── MpAlarmXHistoryStates.bmgrp
│ │ ├── MpAlarmXStates.bmgrp
│ │ ├── MpAuditCheckbox.bmgrp
│ │ ├── MpAuditEventsID.bmgrp
│ │ ├── MpAxisAlarm.bmgrp
│ │ ├── MpAxisHomed.bmgrp
│ │ ├── MpAxisMoving.bmgrp
│ │ ├── MpAxisPower.bmgrp
│ │ ├── MpBorders.bmgrp
│ │ ├── MpComFacilitiesEnum.bmgrp
│ │ ├── MpComSeveritiesEnum.bmgrp
│ │ ├── MpDataLimitViolation.bmgrp
│ │ ├── MpFileFIFOIcons.bmgrp
│ │ ├── MpFileIcons.bmgrp
│ │ ├── MpIcons.bmgrp
│ │ ├── MpIconsClick.bmgrp
│ │ ├── MpListbox.bmgrp
│ │ ├── MpPMLStatesGraphics.bmgrp
│ │ ├── MpPads.bmgrp
│ │ ├── MpTeachIcons.bmgrp
│ │ ├── MpUserCriteriaCheck.bmgrp
│ │ └── MpUserIcons.bmgrp
│ │ ├── Bitmaps
│ │ ├── InstallInProgress.bminfo
│ │ ├── InstallInProgress.png
│ │ ├── MpAlarmX_Backtrace.bminfo
│ │ ├── MpAlarmX_Backtrace.png
│ │ ├── MpAlarmX_History.bminfo
│ │ ├── MpAlarmX_History.png
│ │ ├── MpAlarmX_List.bminfo
│ │ ├── MpAlarmX_List.png
│ │ ├── MpAlarmX_ListDetail.bminfo
│ │ ├── MpAlarmX_ListDetail.png
│ │ ├── MpAlarmX_ListHistory.bminfo
│ │ ├── MpAlarmX_ListHistory.png
│ │ ├── MpAlarm_AcknowledgeReset.bminfo
│ │ ├── MpAlarm_AcknowledgeReset.png
│ │ ├── MpAlarm_Active.bminfo
│ │ ├── MpAlarm_Active.png
│ │ ├── MpAlarm_BypassON.bminfo
│ │ ├── MpAlarm_BypassON.png
│ │ ├── MpAlarm_Inactive.bminfo
│ │ ├── MpAlarm_Inactive.png
│ │ ├── MpAlarm_NotQuit.bminfo
│ │ ├── MpAlarm_NotQuit.png
│ │ ├── MpAlarm_Quit.bminfo
│ │ ├── MpAlarm_Quit.png
│ │ ├── MpAlarm_QuitAll.bminfo
│ │ ├── MpAlarm_QuitAll.png
│ │ ├── MpAlarm_ResetAcknowledge.bminfo
│ │ ├── MpAlarm_ResetAcknowledge.png
│ │ ├── MpAudit_3rdPartyEvent.bminfo
│ │ ├── MpAudit_3rdPartyEvent.png
│ │ ├── MpAudit_AlarmEvent.bminfo
│ │ ├── MpAudit_AlarmEvent.png
│ │ ├── MpAudit_CheckBox.bminfo
│ │ ├── MpAudit_CheckBox.png
│ │ ├── MpAudit_CheckBox_checked.bminfo
│ │ ├── MpAudit_CheckBox_checked.png
│ │ ├── MpAudit_CustomEvent.bminfo
│ │ ├── MpAudit_CustomEvent.png
│ │ ├── MpAudit_PackMLEvent.bminfo
│ │ ├── MpAudit_PackMLEvent.png
│ │ ├── MpAudit_RecipeEvents.bminfo
│ │ ├── MpAudit_RecipeEvents.png
│ │ ├── MpAudit_TweetEvent.bminfo
│ │ ├── MpAudit_TweetEvent.png
│ │ ├── MpAudit_UserEvent.bminfo
│ │ ├── MpAudit_UserEvent.png
│ │ ├── MpAudit_VC4Event.bminfo
│ │ ├── MpAudit_VC4Event.png
│ │ ├── MpAxis_Alarm.bminfo
│ │ ├── MpAxis_Alarm.png
│ │ ├── MpAxis_AlarmActive.bminfo
│ │ ├── MpAxis_AlarmActive.png
│ │ ├── MpAxis_GearDisabled.bminfo
│ │ ├── MpAxis_GearDisabled.png
│ │ ├── MpAxis_GearEnabled.bminfo
│ │ ├── MpAxis_GearEnabled.png
│ │ ├── MpAxis_GearRotating.bminfo
│ │ ├── MpAxis_GearRotating.png
│ │ ├── MpAxis_Gear_Off.bminfo
│ │ ├── MpAxis_Gear_Off.png
│ │ ├── MpAxis_Gear_On.bminfo
│ │ ├── MpAxis_Gear_On.png
│ │ ├── MpAxis_KnownPosition.bminfo
│ │ ├── MpAxis_KnownPosition.png
│ │ ├── MpAxis_Off.bminfo
│ │ ├── MpAxis_Off.png
│ │ ├── MpAxis_Off1.bminfo
│ │ ├── MpAxis_Off1.png
│ │ ├── MpAxis_On.bminfo
│ │ ├── MpAxis_On.png
│ │ ├── MpAxis_On1.bminfo
│ │ ├── MpAxis_On1.png
│ │ ├── MpAxis_Reset.bminfo
│ │ ├── MpAxis_Reset.png
│ │ ├── MpAxis_Stop.bminfo
│ │ ├── MpAxis_Stop.png
│ │ ├── MpAxis_UnknownPosition.bminfo
│ │ ├── MpAxis_UnknownPosition.png
│ │ ├── MpAxis_Warning.bminfo
│ │ ├── MpAxis_Warning.png
│ │ ├── MpBackTransparent.bminfo
│ │ ├── MpBackTransparent.png
│ │ ├── MpBackgroundSemiTransparent.bminfo
│ │ ├── MpBackgroundSemiTransparent.png
│ │ ├── MpBorderSlider09x09.PNG
│ │ ├── MpBorderSlider09x09.bminfo
│ │ ├── MpButton_control.bminfo
│ │ ├── MpButton_control_pressed.bminfo
│ │ ├── MpButton_control_pressed.png
│ │ ├── MpButton_decrease.bminfo
│ │ ├── MpButton_decrease.png
│ │ ├── MpButton_decrease_pressed.bminfo
│ │ ├── MpButton_decrease_pressed.png
│ │ ├── MpButton_default.bminfo
│ │ ├── MpButton_default.png
│ │ ├── MpButton_default_pressed.bminfo
│ │ ├── MpButton_default_pressed.png
│ │ ├── MpButton_device_selected_left.bminfo
│ │ ├── MpButton_device_selected_left.png
│ │ ├── MpButton_device_unselected_left.bminfo
│ │ ├── MpButton_device_unselected_left.png
│ │ ├── MpButton_error.bminfo
│ │ ├── MpButton_error.png
│ │ ├── MpButton_global_area.bminfo
│ │ ├── MpButton_global_area.png
│ │ ├── MpButton_global_area_bottom.bminfo
│ │ ├── MpButton_global_area_bottom.png
│ │ ├── MpButton_global_area_left.bminfo
│ │ ├── MpButton_global_area_left.png
│ │ ├── MpButton_global_area_pres_bottom.bminfo
│ │ ├── MpButton_global_area_pres_bottom.png
│ │ ├── MpButton_global_area_pres_top.bminfo
│ │ ├── MpButton_global_area_pres_top.png
│ │ ├── MpButton_global_area_press_left.bminfo
│ │ ├── MpButton_global_area_press_left.png
│ │ ├── MpButton_global_area_pressed.bminfo
│ │ ├── MpButton_global_area_pressed.png
│ │ ├── MpButton_global_area_top.bminfo
│ │ ├── MpButton_global_area_top.png
│ │ ├── MpButton_increase.bminfo
│ │ ├── MpButton_increase.png
│ │ ├── MpButton_increase_pressed.bminfo
│ │ ├── MpButton_increase_pressed.png
│ │ ├── MpButton_off.bminfo
│ │ ├── MpButton_off.png
│ │ ├── MpButton_on.bminfo
│ │ ├── MpButton_on.png
│ │ ├── MpButton_radio_selected.bminfo
│ │ ├── MpButton_radio_selected.png
│ │ ├── MpButton_radio_unselected.bminfo
│ │ ├── MpButton_radio_unselected.png
│ │ ├── MpButton_ready.bminfo
│ │ ├── MpButton_ready.png
│ │ ├── MpButton_scroll_down.bminfo
│ │ ├── MpButton_scroll_down.png
│ │ ├── MpButton_scroll_down_multi.bminfo
│ │ ├── MpButton_scroll_down_multi.png
│ │ ├── MpButton_scroll_down_multi_press.bminfo
│ │ ├── MpButton_scroll_down_multi_press.png
│ │ ├── MpButton_scroll_down_pressed.bminfo
│ │ ├── MpButton_scroll_down_pressed.png
│ │ ├── MpButton_scroll_left.bminfo
│ │ ├── MpButton_scroll_left.png
│ │ ├── MpButton_scroll_left_multi.bminfo
│ │ ├── MpButton_scroll_left_multi.png
│ │ ├── MpButton_scroll_left_multi_press.bminfo
│ │ ├── MpButton_scroll_left_multi_press.png
│ │ ├── MpButton_scroll_left_pressed.bminfo
│ │ ├── MpButton_scroll_left_pressed.png
│ │ ├── MpButton_scroll_right.bminfo
│ │ ├── MpButton_scroll_right.png
│ │ ├── MpButton_scroll_right_multi.bminfo
│ │ ├── MpButton_scroll_right_multi.png
│ │ ├── MpButton_scroll_right_multi_pres.bminfo
│ │ ├── MpButton_scroll_right_multi_pres.png
│ │ ├── MpButton_scroll_right_pressed.bminfo
│ │ ├── MpButton_scroll_right_pressed.png
│ │ ├── MpButton_scroll_up.bminfo
│ │ ├── MpButton_scroll_up.png
│ │ ├── MpButton_scroll_up_multi.bminfo
│ │ ├── MpButton_scroll_up_multi.png
│ │ ├── MpButton_scroll_up_multi_pressed.bminfo
│ │ ├── MpButton_scroll_up_multi_pressed.png
│ │ ├── MpButton_scroll_up_pressed.bminfo
│ │ ├── MpButton_scroll_up_pressed.png
│ │ ├── MpCheckBoxGray.bminfo
│ │ ├── MpCheckBoxGray.png
│ │ ├── MpCheckBoxOrange.bminfo
│ │ ├── MpCheckBoxOrange.png
│ │ ├── MpCheckbox_small.bminfo
│ │ ├── MpCheckbox_small.png
│ │ ├── MpCheckbox_small_checked.bminfo
│ │ ├── MpCheckbox_small_checked.png
│ │ ├── MpCheckbox_small_gray.bminfo
│ │ ├── MpCheckbox_small_gray.png
│ │ ├── MpClickMe.bminfo
│ │ ├── MpClickMe.png
│ │ ├── MpComLoggerAlarm.bminfo
│ │ ├── MpComLoggerAlarm.png
│ │ ├── MpComLoggerAlarm_0.bminfo
│ │ ├── MpComLoggerAlarm_0.png
│ │ ├── MpComLoggerInformation.bminfo
│ │ ├── MpComLoggerInformation.png
│ │ ├── MpComLoggerInformation_0.bminfo
│ │ ├── MpComLoggerInformation_0.png
│ │ ├── MpComLoggerUI.bminfo
│ │ ├── MpComLoggerUI.png
│ │ ├── MpComLoggerUI_0.bminfo
│ │ ├── MpComLoggerUI_0.png
│ │ ├── MpComLoggerWarning.bminfo
│ │ ├── MpComLoggerWarning.png
│ │ ├── MpComLoggerWarning_0.bminfo
│ │ ├── MpComLoggerWarning_0.png
│ │ ├── MpData_DevBorder.bminfo
│ │ ├── MpData_DevBorder.png
│ │ ├── MpData_LowerLimit.bminfo
│ │ ├── MpData_LowerLimit.png
│ │ ├── MpData_MaxBorder.bminfo
│ │ ├── MpData_MaxBorder.png
│ │ ├── MpData_MeanBorder.bminfo
│ │ ├── MpData_MeanBorder.png
│ │ ├── MpData_MinBorder.bminfo
│ │ ├── MpData_MinBorder.png
│ │ ├── MpData_NoLimit.bminfo
│ │ ├── MpData_NoLimit.png
│ │ ├── MpData_RangeBorder.bminfo
│ │ ├── MpData_RangeBorder.png
│ │ ├── MpData_UpperLimit.bminfo
│ │ ├── MpData_UpperLimit.png
│ │ ├── MpData_UpperLimit_0.bminfo
│ │ ├── MpData_UpperLimit_0.png
│ │ ├── MpData_WithinLimit.bminfo
│ │ ├── MpData_WithinLimit.png
│ │ ├── MpData_WithinLimit_0.bminfo
│ │ ├── MpData_WithinLimit_0.png
│ │ ├── MpFile_ArrowDown.bminfo
│ │ ├── MpFile_ArrowDown.png
│ │ ├── MpFile_ArrowLeft.bminfo
│ │ ├── MpFile_ArrowLeft.png
│ │ ├── MpFile_ArrowRight.bminfo
│ │ ├── MpFile_ArrowRight.png
│ │ ├── MpFile_ArrowUp.bminfo
│ │ ├── MpFile_ArrowUp.png
│ │ ├── MpFile_BMP.bminfo
│ │ ├── MpFile_BMP.png
│ │ ├── MpFile_CSV.bminfo
│ │ ├── MpFile_CSV.png
│ │ ├── MpFile_Cancel.bminfo
│ │ ├── MpFile_Cancel.png
│ │ ├── MpFile_DOC.bminfo
│ │ ├── MpFile_DOC.png
│ │ ├── MpFile_FILE.bminfo
│ │ ├── MpFile_FILE.png
│ │ ├── MpFile_FOLDER.bminfo
│ │ ├── MpFile_FOLDER.png
│ │ ├── MpFile_HTML.bminfo
│ │ ├── MpFile_HTML.png
│ │ ├── MpFile_JPG.bminfo
│ │ ├── MpFile_JPG.png
│ │ ├── MpFile_OK.bminfo
│ │ ├── MpFile_OK.png
│ │ ├── MpFile_PDF.bminfo
│ │ ├── MpFile_PDF.png
│ │ ├── MpFile_Scan.bminfo
│ │ ├── MpFile_Scan.png
│ │ ├── MpFile_TXT.bminfo
│ │ ├── MpFile_TXT.png
│ │ ├── MpFile_UNKOWN.bminfo
│ │ ├── MpFile_UNKOWN.png
│ │ ├── MpFile_USER1.bminfo
│ │ ├── MpFile_USER1.png
│ │ ├── MpFile_USER10.bminfo
│ │ ├── MpFile_USER10.png
│ │ ├── MpFile_USER2.bminfo
│ │ ├── MpFile_USER2.png
│ │ ├── MpFile_USER3.bminfo
│ │ ├── MpFile_USER3.png
│ │ ├── MpFile_USER4.bminfo
│ │ ├── MpFile_USER4.png
│ │ ├── MpFile_USER5.bminfo
│ │ ├── MpFile_USER5.png
│ │ ├── MpFile_USER6.bminfo
│ │ ├── MpFile_USER6.png
│ │ ├── MpFile_USER7.bminfo
│ │ ├── MpFile_USER7.png
│ │ ├── MpFile_USER8.bminfo
│ │ ├── MpFile_USER8.png
│ │ ├── MpFile_USER9.bminfo
│ │ ├── MpFile_USER9.png
│ │ ├── MpFile_XLS.bminfo
│ │ ├── MpFile_XLS.png
│ │ ├── MpFile_XML.bminfo
│ │ ├── MpFile_XML.png
│ │ ├── MpFrameHeader.bminfo
│ │ ├── MpFrameHeader.png
│ │ ├── MpFrameInvisible.bminfo
│ │ ├── MpFrameInvisible.png
│ │ ├── MpGroupControl.bminfo
│ │ ├── MpGroupControl.png
│ │ ├── MpIcon_AlarmX.bminfo
│ │ ├── MpIcon_AlarmX.png
│ │ ├── MpIcon_Audit.bminfo
│ │ ├── MpIcon_Audit.png
│ │ ├── MpIcon_Axis.bminfo
│ │ ├── MpIcon_Axis.png
│ │ ├── MpIcon_Backup.bminfo
│ │ ├── MpIcon_Backup.png
│ │ ├── MpIcon_FileExporer.bminfo
│ │ ├── MpIcon_FileExporer.png
│ │ ├── MpIcon_MpAlarm.bminfo
│ │ ├── MpIcon_MpAlarm.png
│ │ ├── MpIcon_MpAlarmClick.bminfo
│ │ ├── MpIcon_MpAlarmClick.png
│ │ ├── MpIcon_MpAlarmX.bminfo
│ │ ├── MpIcon_MpAlarmX.png
│ │ ├── MpIcon_MpAlarmXClick.bminfo
│ │ ├── MpIcon_MpAlarmXClick.png
│ │ ├── MpIcon_MpAlarmXHistory.bminfo
│ │ ├── MpIcon_MpAlarmXHistory.png
│ │ ├── MpIcon_MpAlarmXHistoryClick.bminfo
│ │ ├── MpIcon_MpAlarmXHistoryClick.png
│ │ ├── MpIcon_MpAlarmXHistoryExport.bminfo
│ │ ├── MpIcon_MpAlarmXHistoryExport.png
│ │ ├── MpIcon_MpAudit.bminfo
│ │ ├── MpIcon_MpAudit.png
│ │ ├── MpIcon_MpAuditClick.bminfo
│ │ ├── MpIcon_MpAuditClick.png
│ │ ├── MpIcon_MpAxis.bminfo
│ │ ├── MpIcon_MpAxis.png
│ │ ├── MpIcon_MpAxis1.bminfo
│ │ ├── MpIcon_MpAxis1.png
│ │ ├── MpIcon_MpAxis1Click.bminfo
│ │ ├── MpIcon_MpAxis1Click.png
│ │ ├── MpIcon_MpAxisClick.bminfo
│ │ ├── MpIcon_MpAxisClick.png
│ │ ├── MpIcon_MpCnc.bminfo
│ │ ├── MpIcon_MpCnc.png
│ │ ├── MpIcon_MpCnc1.bminfo
│ │ ├── MpIcon_MpCnc1.png
│ │ ├── MpIcon_MpCnc2Click.bminfo
│ │ ├── MpIcon_MpCnc2Click.png
│ │ ├── MpIcon_MpCnc3Click.bminfo
│ │ ├── MpIcon_MpCnc3Click.png
│ │ ├── MpIcon_MpCom.bminfo
│ │ ├── MpIcon_MpCom.png
│ │ ├── MpIcon_MpComClick.bminfo
│ │ ├── MpIcon_MpComClick.png
│ │ ├── MpIcon_MpData.bminfo
│ │ ├── MpIcon_MpData.png
│ │ ├── MpIcon_MpDataClick.bminfo
│ │ ├── MpIcon_MpDataClick.png
│ │ ├── MpIcon_MpDelta.bminfo
│ │ ├── MpIcon_MpDelta.png
│ │ ├── MpIcon_MpDelta1.bminfo
│ │ ├── MpIcon_MpDelta1.png
│ │ ├── MpIcon_MpDelta3Click.bminfo
│ │ ├── MpIcon_MpDelta3Click.png
│ │ ├── MpIcon_MpDelta4Click.bminfo
│ │ ├── MpIcon_MpDelta4Click.png
│ │ ├── MpIcon_MpEnergy.bminfo
│ │ ├── MpIcon_MpEnergy.png
│ │ ├── MpIcon_MpEnergyClick.bminfo
│ │ ├── MpIcon_MpEnergyClick.png
│ │ ├── MpIcon_MpFile.bminfo
│ │ ├── MpIcon_MpFile.png
│ │ ├── MpIcon_MpFileClick.bminfo
│ │ ├── MpIcon_MpFileClick.png
│ │ ├── MpIcon_MpHeat.bminfo
│ │ ├── MpIcon_MpHeat.png
│ │ ├── MpIcon_MpOee.bminfo
│ │ ├── MpIcon_MpOee.png
│ │ ├── MpIcon_MpOeeClick.bminfo
│ │ ├── MpIcon_MpOeeClick.png
│ │ ├── MpIcon_MpOeeList.bminfo
│ │ ├── MpIcon_MpOeeList.png
│ │ ├── MpIcon_MpOeeTimeline.bminfo
│ │ ├── MpIcon_MpOeeTimeline.png
│ │ ├── MpIcon_MpOeeTrend.bminfo
│ │ ├── MpIcon_MpOeeTrend.png
│ │ ├── MpIcon_MpPackML.bminfo
│ │ ├── MpIcon_MpPackML.png
│ │ ├── MpIcon_MpPackMLClick.bminfo
│ │ ├── MpIcon_MpPackMLClick.png
│ │ ├── MpIcon_MpRecipe.bminfo
│ │ ├── MpIcon_MpRecipe.png
│ │ ├── MpIcon_MpRecipeClick.bminfo
│ │ ├── MpIcon_MpRecipeClick.png
│ │ ├── MpIcon_MpRecipeX.bminfo
│ │ ├── MpIcon_MpRecipeX.png
│ │ ├── MpIcon_MpRecipeXClick.bminfo
│ │ ├── MpIcon_MpRecipeXClick.png
│ │ ├── MpIcon_MpRoboArm4.bminfo
│ │ ├── MpIcon_MpRoboArm4.png
│ │ ├── MpIcon_MpRoboArm4Click.bminfo
│ │ ├── MpIcon_MpRoboArm4Click.png
│ │ ├── MpIcon_MpRoboArm5.bminfo
│ │ ├── MpIcon_MpRoboArm5.png
│ │ ├── MpIcon_MpRoboArm5Click.bminfo
│ │ ├── MpIcon_MpRoboArm5Click.png
│ │ ├── MpIcon_MpRoboArm6.bminfo
│ │ ├── MpIcon_MpRoboArm6.png
│ │ ├── MpIcon_MpRoboArm6Click.bminfo
│ │ ├── MpIcon_MpRoboArm6Click.png
│ │ ├── MpIcon_MpSafetyXClick.bminfo
│ │ ├── MpIcon_MpSafetyXClick.png
│ │ ├── MpIcon_MpScara.bminfo
│ │ ├── MpIcon_MpScara.png
│ │ ├── MpIcon_MpScara1.bminfo
│ │ ├── MpIcon_MpScara1.png
│ │ ├── MpIcon_MpScara2Click.bminfo
│ │ ├── MpIcon_MpScara2Click.png
│ │ ├── MpIcon_MpScara4Click.bminfo
│ │ ├── MpIcon_MpScara4Click.png
│ │ ├── MpIcon_MpSpindle.bminfo
│ │ ├── MpIcon_MpSpindle.png
│ │ ├── MpIcon_MpSpindleClick.bminfo
│ │ ├── MpIcon_MpSpindleClick.png
│ │ ├── MpIcon_MpTeach.bminfo
│ │ ├── MpIcon_MpTeach.png
│ │ ├── MpIcon_MpTeachClick.bminfo
│ │ ├── MpIcon_MpTeachClick.png
│ │ ├── MpIcon_MpTrend.bminfo
│ │ ├── MpIcon_MpTrend.png
│ │ ├── MpIcon_MpTrendClick.bminfo
│ │ ├── MpIcon_MpTrendClick.png
│ │ ├── MpIcon_MpTweetClick.bminfo
│ │ ├── MpIcon_MpTweetClick.png
│ │ ├── MpIcon_MpUser.bminfo
│ │ ├── MpIcon_MpUser.png
│ │ ├── MpIcon_MpUser1.bminfo
│ │ ├── MpIcon_MpUser1.png
│ │ ├── MpIcon_MpUserClick.bminfo
│ │ ├── MpIcon_MpUserClick.png
│ │ ├── MpIcon_MpUserClick1.bminfo
│ │ ├── MpIcon_MpUserClick1.png
│ │ ├── MpIcon_MpUserClick2.bminfo
│ │ ├── MpIcon_MpUserClick2.png
│ │ ├── MpIcon_MpUserXClick.bminfo
│ │ ├── MpIcon_MpUserXClick.png
│ │ ├── MpIcon_MpWebXs.bminfo
│ │ ├── MpIcon_MpWebXs.png
│ │ ├── MpIcon_MpWebXsClick.bminfo
│ │ ├── MpIcon_MpWebXsClick.png
│ │ ├── MpIcon_MpWinder.bminfo
│ │ ├── MpIcon_MpWinder.png
│ │ ├── MpIcon_MpWinderClick.bminfo
│ │ ├── MpIcon_MpWinderClick.png
│ │ ├── MpIcon_PackML.bminfo
│ │ ├── MpIcon_PackML.png
│ │ ├── MpIcon_Recipe.bminfo
│ │ ├── MpIcon_Recipe.png
│ │ ├── MpIcon_Report.bminfo
│ │ ├── MpIcon_Report.png
│ │ ├── MpIcon_UserGroup.bminfo
│ │ ├── MpIcon_UserGroup.png
│ │ ├── MpIcon_mapp.bminfo
│ │ ├── MpIcon_mapp.png
│ │ ├── MpImg_ActiveWarning.bminfo
│ │ ├── MpImg_ActiveWarning.png
│ │ ├── MpImg_Config.bminfo
│ │ ├── MpImg_Config.png
│ │ ├── MpImg_Diagnostics.bminfo
│ │ ├── MpImg_Diagnostics.png
│ │ ├── MpImg_Home.bminfo
│ │ ├── MpImg_Home.png
│ │ ├── MpImg_Warning.bminfo
│ │ ├── MpImg_Warning.png
│ │ ├── MpInputBorder.bminfo
│ │ ├── MpInputBorder.png
│ │ ├── MpInputBorderCenterless.bminfo
│ │ ├── MpInputBorderCenterless.png
│ │ ├── MpInputBorderInactive.bminfo
│ │ ├── MpInputBorderInactive.png
│ │ ├── MpInputBorderInactiveCenterless.bminfo
│ │ ├── MpInputBorderInactiveCenterless.png
│ │ ├── MpKey_AlphaPad_lower.bminfo
│ │ ├── MpKey_AlphaPad_lower.png
│ │ ├── MpKey_AlphaPad_lowerPressed.bminfo
│ │ ├── MpKey_AlphaPad_lowerPressed.png
│ │ ├── MpKey_AlphaPad_numeric.bminfo
│ │ ├── MpKey_AlphaPad_numeric.png
│ │ ├── MpKey_AlphaPad_numeric2.bminfo
│ │ ├── MpKey_AlphaPad_numeric2.png
│ │ ├── MpKey_AlphaPad_numeric2Pressed.bminfo
│ │ ├── MpKey_AlphaPad_numeric2Pressed.png
│ │ ├── MpKey_AlphaPad_numericPressed.bminfo
│ │ ├── MpKey_AlphaPad_numericPressed.png
│ │ ├── MpKey_AlphaPad_upper.bminfo
│ │ ├── MpKey_AlphaPad_upper.png
│ │ ├── MpKey_AlphaPad_upperPressed.bminfo
│ │ ├── MpKey_AlphaPad_upperPressed.png
│ │ ├── MpKey_EditPad_lower.bminfo
│ │ ├── MpKey_EditPad_lower.png
│ │ ├── MpKey_EditPad_lowerPressed.bminfo
│ │ ├── MpKey_EditPad_lowerPressed.png
│ │ ├── MpKey_EditPad_numeric.bminfo
│ │ ├── MpKey_EditPad_numeric.png
│ │ ├── MpKey_EditPad_numeric2.bminfo
│ │ ├── MpKey_EditPad_numeric2.png
│ │ ├── MpKey_EditPad_numeric2Pressed.bminfo
│ │ ├── MpKey_EditPad_numeric2Pressed.png
│ │ ├── MpKey_EditPad_numericPressed.bminfo
│ │ ├── MpKey_EditPad_numericPressed.png
│ │ ├── MpKey_EditPad_upper.bminfo
│ │ ├── MpKey_EditPad_upper.png
│ │ ├── MpKey_EditPad_upperPressed.bminfo
│ │ ├── MpKey_EditPad_upperPressed.png
│ │ ├── MpKey_ListPadHor.bminfo
│ │ ├── MpKey_ListPadHor.png
│ │ ├── MpKey_ListPadHor_pressed.bminfo
│ │ ├── MpKey_ListPadHor_pressed.png
│ │ ├── MpKey_ListPadVer.bminfo
│ │ ├── MpKey_ListPadVer.png
│ │ ├── MpKey_ListPadVer_pressed.bminfo
│ │ ├── MpKey_ListPadVer_pressed.png
│ │ ├── MpKey_Numpad.bminfo
│ │ ├── MpKey_Numpad.png
│ │ ├── MpKey_Numpad_pressed.bminfo
│ │ ├── MpKey_Numpad_pressed.png
│ │ ├── MpLabelBorder.bminfo
│ │ ├── MpLabelBorder.png
│ │ ├── MpLabelBorderDown.bminfo
│ │ ├── MpLabelBorderDown.png
│ │ ├── MpLabelBorderDown_Orange.bminfo
│ │ ├── MpLabelBorderDown_Orange.png
│ │ ├── MpLabelBorderLeft.bminfo
│ │ ├── MpLabelBorderLeft.png
│ │ ├── MpLabelBorderSlim.bminfo
│ │ ├── MpLabelBorderSlim.png
│ │ ├── MpListboxFrameCenter.bminfo
│ │ ├── MpListboxFrameCenter.png
│ │ ├── MpListboxFrameLeft.bminfo
│ │ ├── MpListboxFrameLeft.png
│ │ ├── MpListboxFrameRight.bminfo
│ │ ├── MpListboxFrameRight.png
│ │ ├── MpLogoTransparent.bminfo
│ │ ├── MpLogoTransparent.png
│ │ ├── MpOeeCore.bminfo
│ │ ├── MpOeeCore.png
│ │ ├── MpOeeList.bminfo
│ │ ├── MpOeeList.png
│ │ ├── MpOeeList_64x64.bminfo
│ │ ├── MpOeeList_64x64.png
│ │ ├── MpOeeTimeline.bminfo
│ │ ├── MpOeeTimeline.png
│ │ ├── MpOeeTimeline_64x64.bminfo
│ │ ├── MpOeeTimeline_64x64.png
│ │ ├── MpOeeTrend.bminfo
│ │ ├── MpOeeTrend.png
│ │ ├── MpOeeTrend_64x64.bminfo
│ │ ├── MpOeeTrend_64x64.png
│ │ ├── MpOutputBorder.bminfo
│ │ ├── MpOutputBorder.png
│ │ ├── MpOutputBorderActive.bminfo
│ │ ├── MpOutputBorderActive.png
│ │ ├── MpPackML_BlueOFF.bminfo
│ │ ├── MpPackML_BlueOFF.png
│ │ ├── MpPackML_BlueON.bminfo
│ │ ├── MpPackML_BlueON.png
│ │ ├── MpPackML_GreenOFF.bminfo
│ │ ├── MpPackML_GreenOFF.png
│ │ ├── MpPackML_GreenON.bminfo
│ │ ├── MpPackML_GreenON.png
│ │ ├── MpPackML_Main.bminfo
│ │ ├── MpPackML_Main.png
│ │ ├── MpPackML_YellowOFF.bminfo
│ │ ├── MpPackML_YellowOFF.png
│ │ ├── MpPackML_YellowON.bminfo
│ │ ├── MpPackML_YellowON.png
│ │ ├── MpProgressBorder.bminfo
│ │ ├── MpProgressBorder.png
│ │ ├── MpSafetyButton_off.bminfo
│ │ ├── MpSafetyButton_off.png
│ │ ├── MpSafetyButton_on.bminfo
│ │ ├── MpSafetyButton_on.png
│ │ ├── MpSlider_BallGray.bminfo
│ │ ├── MpSlider_BallGray.png
│ │ ├── MpSlider_BallGray_small.bminfo
│ │ ├── MpSlider_BallGray_small.png
│ │ ├── MpTeach_Add.bminfo
│ │ ├── MpTeach_Add.png
│ │ ├── MpTeach_Copy.bminfo
│ │ ├── MpTeach_Copy.png
│ │ ├── MpTeach_Cut.bminfo
│ │ ├── MpTeach_Cut.png
│ │ ├── MpTeach_Delete.bminfo
│ │ ├── MpTeach_Delete.png
│ │ ├── MpTeach_Export.bminfo
│ │ ├── MpTeach_Export.png
│ │ ├── MpTeach_Generate.bminfo
│ │ ├── MpTeach_Generate.png
│ │ ├── MpTeach_Import.bminfo
│ │ ├── MpTeach_Import.png
│ │ ├── MpTeach_Insert.bminfo
│ │ ├── MpTeach_Insert.png
│ │ ├── MpTeach_MoveDown.bminfo
│ │ ├── MpTeach_MoveDown.png
│ │ ├── MpTeach_MoveUp.bminfo
│ │ ├── MpTeach_MoveUp.png
│ │ ├── MpTeach_Paste.bminfo
│ │ ├── MpTeach_Paste.png
│ │ ├── MpTeach_Point_selected.bminfo
│ │ ├── MpTeach_Point_selected.png
│ │ ├── MpTeach_Point_unselected_even.bminfo
│ │ ├── MpTeach_Point_unselected_even.png
│ │ ├── MpTeach_Point_unselected_odd.bminfo
│ │ ├── MpTeach_Point_unselected_odd.png
│ │ ├── MpTeach_Replace.bminfo
│ │ ├── MpTeach_Replace.png
│ │ ├── MpUserGroup_add.bminfo
│ │ ├── MpUserGroup_add.png
│ │ ├── MpUserGroup_add_locked.bminfo
│ │ ├── MpUserGroup_add_locked.png
│ │ ├── MpUserGroup_delete.bminfo
│ │ ├── MpUserGroup_delete.png
│ │ ├── MpUserGroup_delete_locked.bminfo
│ │ ├── MpUserGroup_delete_locked.png
│ │ ├── MpUserGroup_edit.bminfo
│ │ ├── MpUserGroup_edit.png
│ │ ├── MpUserGroup_edit_locked.bminfo
│ │ ├── MpUserGroup_edit_locked.png
│ │ ├── MpUser_CriteriaError.bminfo
│ │ ├── MpUser_CriteriaError.png
│ │ ├── MpUser_CriteriaOK.bminfo
│ │ ├── MpUser_CriteriaOK.png
│ │ ├── MpUser_Exit.bminfo
│ │ ├── MpUser_Exit.png
│ │ ├── MpUser_Exit_locked.bminfo
│ │ ├── MpUser_Exit_locked.png
│ │ ├── MpUser_Export.bminfo
│ │ ├── MpUser_Export.png
│ │ ├── MpUser_Export_locked.bminfo
│ │ ├── MpUser_Export_locked.png
│ │ ├── MpUser_Import.bminfo
│ │ ├── MpUser_Import.png
│ │ ├── MpUser_Import_locked.bminfo
│ │ ├── MpUser_Import_locked.png
│ │ ├── MpUser_UserEdit.bminfo
│ │ ├── MpUser_UserEdit.png
│ │ ├── MpUser_UserGroupEdit.bminfo
│ │ ├── MpUser_UserGroupEdit.png
│ │ ├── MpUser_add.bminfo
│ │ ├── MpUser_add.png
│ │ ├── MpUser_add_locked.bminfo
│ │ ├── MpUser_add_locked.png
│ │ ├── MpUser_clock_stop.bminfo
│ │ ├── MpUser_clock_stop.png
│ │ ├── MpUser_delete.bminfo
│ │ ├── MpUser_delete.png
│ │ ├── MpUser_delete_locked.bminfo
│ │ ├── MpUser_delete_locked.png
│ │ ├── MpUser_edit.bminfo
│ │ ├── MpUser_edit.png
│ │ ├── MpUser_edit_locked.bminfo
│ │ ├── MpUser_edit_locked.png
│ │ ├── MpUser_lock.bminfo
│ │ ├── MpUser_lock.png
│ │ ├── MpUser_lock_locked.bminfo
│ │ ├── MpUser_lock_locked.png
│ │ ├── MpUser_pw_change.bminfo
│ │ ├── MpUser_pw_change.png
│ │ ├── MpUser_pw_change_locked.bminfo
│ │ ├── MpUser_pw_change_locked.png
│ │ ├── Mpbutton_control.png
│ │ ├── WhiteBackground.bminfo
│ │ ├── WhiteBackground.png
│ │ ├── checkbox_checked.bminfo
│ │ ├── checkbox_checked.png
│ │ ├── checkbox_checked_40.bminfo
│ │ ├── checkbox_checked_40.png
│ │ ├── checkbox_small_checked.bminfo
│ │ ├── checkbox_small_checked.png
│ │ ├── inprogress.bminfo
│ │ ├── inprogress.png
│ │ ├── mappFramework_NewLogo.bminfo
│ │ ├── mappFramework_NewLogo.png
│ │ ├── mappFramework_NewLogoLarge.bminfo
│ │ ├── mappFramework_NewLogoLarge.png
│ │ ├── mappFramework_logo.bminfo
│ │ ├── mappFramework_logo.png
│ │ ├── mappSERVICES_logo.bminfo
│ │ ├── mappSERVICES_logo.png
│ │ ├── mappTechnology_NewLogo.bminfo
│ │ └── mappTechnology_NewLogo.png
│ │ ├── Borders
│ │ ├── CheckBox_checked.bdr
│ │ ├── CheckBox_small_checked.bdr
│ │ ├── Mp_AttentionOff.bdr
│ │ ├── Mp_AttentionOn.bdr
│ │ ├── Mp_BitmapFrame.bdr
│ │ ├── Mp_Button.bdr
│ │ ├── Mp_Button_Control.bdr
│ │ ├── Mp_Button_Control_pressed.bdr
│ │ ├── Mp_Button_Device_Select_Left.bdr
│ │ ├── Mp_Button_Device_Unselect_Left.bdr
│ │ ├── Mp_Button_KeyRingOff.bdr
│ │ ├── Mp_Button_KeyRingOn.bdr
│ │ ├── Mp_Button_Multi_Scroll_Down.bdr
│ │ ├── Mp_Button_Multi_Scroll_Dwn_press.bdr
│ │ ├── Mp_Button_Multi_Scroll_Up.bdr
│ │ ├── Mp_Button_Multi_Scroll_Up_press.bdr
│ │ ├── Mp_Button_Safety_ACK_off.bdr
│ │ ├── Mp_Button_Safety_ACK_on.bdr
│ │ ├── Mp_Button_Scoll_Up.bdr
│ │ ├── Mp_Button_Scoll_Up_pressed.bdr
│ │ ├── Mp_Button_Scroll_Down.bdr
│ │ ├── Mp_Button_Scroll_Down_pressed.bdr
│ │ ├── Mp_Button_Scroll_Left.bdr
│ │ ├── Mp_Button_Scroll_Left_Multi.bdr
│ │ ├── Mp_Button_Scroll_Left_Multi_pres.bdr
│ │ ├── Mp_Button_Scroll_Left_pressed.bdr
│ │ ├── Mp_Button_Scroll_Right.bdr
│ │ ├── Mp_Button_Scroll_Right_Multi.bdr
│ │ ├── Mp_Button_Scroll_Right_Multi_pr.bdr
│ │ ├── Mp_Button_Scroll_Right_pressed.bdr
│ │ ├── Mp_Button_pressed.bdr
│ │ ├── Mp_CheckBox_checked.bdr
│ │ ├── Mp_DataDevBorder.bdr
│ │ ├── Mp_DataMaxBorder.bdr
│ │ ├── Mp_DataMeanBorder.bdr
│ │ ├── Mp_DataMinBorder.bdr
│ │ ├── Mp_DataNameFrame.bdr
│ │ ├── Mp_DataRangeBorder.bdr
│ │ ├── Mp_Flat_grey.bdr
│ │ ├── Mp_FrameInvisible.bdr
│ │ ├── Mp_GroupControl.bdr
│ │ ├── Mp_InputBorder.bdr
│ │ ├── Mp_InputBorderInactive.bdr
│ │ ├── Mp_LabelBorder.bdr
│ │ ├── Mp_LabelBorderDown.bdr
│ │ ├── Mp_LabelBorderSlim.bdr
│ │ ├── Mp_LabelBorder_Orange.bdr
│ │ ├── Mp_ListBoxCenter.bdr
│ │ ├── Mp_ListBoxLeft.bdr
│ │ ├── Mp_ListBoxRight.bdr
│ │ ├── Mp_MoveOff.bdr
│ │ ├── Mp_MoveOn.bdr
│ │ ├── Mp_OutputBorder.bdr
│ │ ├── Mp_PackML_States.bdr
│ │ ├── Mp_RangeBar.bdr
│ │ ├── Mp_SliderBorder09.bdr
│ │ ├── Mp_SunkenNG.bdr
│ │ ├── Mp_SunkenNGgray.bdr
│ │ ├── Mp_TabActive.bdr
│ │ ├── Mp_TabSelect.bdr
│ │ ├── Mp_TabUnSelect.bdr
│ │ ├── Mp_TeachPointSelected.bdr
│ │ ├── Mp_TeachPointUnselectedEven.bdr
│ │ └── Mp_TeachPointUnselectedOdd.bdr
│ │ ├── ColorMaps
│ │ ├── MpEnergyChartData.clm
│ │ ├── MpFileMultiSel.clm
│ │ └── MpPMLStateColors.clm
│ │ ├── Fonts
│ │ ├── MpButton.fninfo
│ │ ├── MpDefault.fninfo
│ │ ├── MpHeader.fninfo
│ │ ├── MpHeader2.fninfo
│ │ ├── MpHtml_SDM.fninfo
│ │ ├── MpInfo.fninfo
│ │ ├── MpInput.fninfo
│ │ ├── MpMenuButtons.fninfo
│ │ ├── MpPackMLStateNames.fninfo
│ │ └── MpPads.fninfo
│ │ ├── Layers
│ │ ├── LockedMessageLayer.layer
│ │ ├── MpBackground.layer
│ │ ├── MpOeeControl.layer
│ │ ├── MpPageControl.layer
│ │ ├── MpUserXSign.layer
│ │ └── MpUserXSignMessageBox.layer
│ │ ├── Package.vcp
│ │ ├── Pages
│ │ ├── MpAlarmXHistory.page
│ │ ├── MpAlarmXList.page
│ │ ├── MpAlarmXListUI_Backtrace.page
│ │ ├── MpAlarmXQuery.page
│ │ ├── MpAuditCustomEventsUI.page
│ │ ├── MpAuditQueryUI.page
│ │ ├── MpAuditTrailUI.page
│ │ ├── MpAxisBasic.page
│ │ ├── MpBackup.page
│ │ ├── MpDataStatisticsUI.page
│ │ ├── MpDataTableUI.page
│ │ ├── MpFileManagerUI.page
│ │ ├── MpOeeCoreUI.page
│ │ ├── MpOeeListUI.page
│ │ ├── MpOeeTimelineUI.page
│ │ ├── MpOeeTrendUI.page
│ │ ├── MpPackMLBasicUI.page
│ │ ├── MpPackMLStatisticsUI.page
│ │ ├── MpRecipeUI.page
│ │ ├── MpReport.page
│ │ ├── MpSetup.page
│ │ ├── MpSystemDiagnostics.page
│ │ ├── MpUserXManagerUI_Roles.page
│ │ ├── MpUserXManagerUI_Users.page
│ │ └── mapp1StartPage.page
│ │ ├── Palette.vcr
│ │ ├── StyleSheets
│ │ ├── Color.vcs
│ │ ├── Default2.vcs
│ │ └── mapp.vcs
│ │ ├── TextGroups
│ │ ├── MpAuditEventTextSetup.txtgrp
│ │ ├── MpAuditUserDefinedEvent.txtgrp
│ │ ├── MpButtons_PageTexts.txtgrp
│ │ └── ShiftGroup.txtgrp
│ │ ├── TouchPads
│ │ ├── MpAlphaPad.tpr
│ │ ├── MpNavigationPad_ver.tpr
│ │ └── MpNumPad.tpr
│ │ ├── Trends
│ │ ├── MpOeeTrendUI.tre
│ │ ├── MpOeeTrendUI_Availability.trd
│ │ ├── MpOeeTrendUI_OEE.trd
│ │ ├── MpOeeTrendUI_Performance.trd
│ │ ├── MpOeeTrendUI_Quality.trd
│ │ └── TrendData.tdc
│ │ ├── VCObject.vc
│ │ ├── Vc.dob
│ │ └── VirtualKeys.vcvk
├── VCShared
│ ├── AlarmGroups
│ │ ├── AlarmSystem.alcfg
│ │ ├── MpAuditTrailAlarms.algrp
│ │ ├── MpAxisBasicAlarms.algrp
│ │ ├── MpCncAlarms.algrp
│ │ ├── MpDataRecorderAlarms.algrp
│ │ ├── MpFileManagerAlarms.algrp
│ │ ├── MpOeeAlarms.algrp
│ │ ├── MpPackMLAlarms.algrp
│ │ ├── MpRecipeAlarms.algrp
│ │ ├── MpRobotAlarms.algrp
│ │ ├── MpSpindleAlarms.algrp
│ │ ├── MpTeachPointsUIAlarms.algrp
│ │ ├── MpUserAlarms.algrp
│ │ └── SystemAlarms.algrp
│ ├── ControlVersion.cvinfo
│ ├── DataSources
│ │ ├── DataSource.dso
│ │ └── Internal.dso
│ ├── Languages.vcr
│ ├── Package.vcp
│ ├── TextGroups
│ │ ├── MpAlarmAcknowledgeState.txtgrp
│ │ ├── MpAlarmBasicUIText.txtgrp
│ │ ├── MpAlarmBypassState.txtgrp
│ │ ├── MpAlarmEvent.txtgrp
│ │ ├── MpAlarmSeparator.txtgrp
│ │ ├── MpAlarmState.txtgrp
│ │ ├── MpAlarmXHistoryCode.txtgrp
│ │ ├── MpAlarmXHistoryExport.txtgrp
│ │ ├── MpAlarmXHistoryState.txtgrp
│ │ ├── MpAlarmXHistoryStatus.txtgrp
│ │ ├── MpAlarmXHistoryUIText.txtgrp
│ │ ├── MpAlarmXListCode.txtgrp
│ │ ├── MpAlarmXListEventID.txtgrp
│ │ ├── MpAlarmXListRecordID.txtgrp
│ │ ├── MpAlarmXListState.txtgrp
│ │ ├── MpAlarmXListStatus.txtgrp
│ │ ├── MpAlarmXListUIQuery.txtgrp
│ │ ├── MpAlarmXListUIText.txtgrp
│ │ ├── MpAuditArchiveFileTypeDP.txtgrp
│ │ ├── MpAuditArchiveSettingsDP.txtgrp
│ │ ├── MpAuditEventsOutput.txtgrp
│ │ ├── MpAuditSignatureEvent.txtgrp
│ │ ├── MpAuditTrailUIText.txtgrp
│ │ ├── MpAuditTweetEvent.txtgrp
│ │ ├── MpAuditUIErrorText.txtgrp
│ │ ├── MpAuditUIMessageBox.txtgrp
│ │ ├── MpAuditUserAction.txtgrp
│ │ ├── MpAuditUserIDText.txtgrp
│ │ ├── MpAxisBasic.txtgrp
│ │ ├── MpBackupIntervalUITexts.txtgrp
│ │ ├── MpBackupUITexts.txtgrp
│ │ ├── MpComLoggerUIText.txtgrp
│ │ ├── MpDataStatisticsUIStatus.txtgrp
│ │ ├── MpDataStatisticsUIText.txtgrp
│ │ ├── MpDataTableHeader.txtgrp
│ │ ├── MpDataTableUIStatus.txtgrp
│ │ ├── MpDataTableUIText.txtgrp
│ │ ├── MpDateTimeFormats.txtgrp
│ │ ├── MpFileManagerUIDevices.txtgrp
│ │ ├── MpFileManagerUIFIFOText.txtgrp
│ │ ├── MpFileManagerUIFiles.txtgrp
│ │ ├── MpFileManagerUIMessageBox.txtgrp
│ │ ├── MpFileManagerUIStatus.txtgrp
│ │ ├── MpFileManagerUIText.txtgrp
│ │ ├── MpLanguages.txtgrp
│ │ ├── MpOeeCoreText.txtgrp
│ │ ├── MpOeeCoreUIText.txtgrp
│ │ ├── MpOeeCoreUITime.txtgrp
│ │ ├── MpOeeListUIText.txtgrp
│ │ ├── MpOeeTimelineUIDuration.txtgrp
│ │ ├── MpOeeTimelineUIProductionState.txtgrp
│ │ ├── MpOeeTimelineUIText.txtgrp
│ │ ├── MpOeeTrendUIText.txtgrp
│ │ ├── MpPackMLBasicUIText.txtgrp
│ │ ├── MpPackMLCmds.txtgrp
│ │ ├── MpPackMLModesNames.txtgrp
│ │ ├── MpPackMLStateNames.txtgrp
│ │ ├── MpPackMLStatisticsText.txtgrp
│ │ ├── MpPackMLStatisticsUIText.txtgrp
│ │ ├── MpRecipeAuditText.txtgrp
│ │ ├── MpRecipeUICategoryDD.txtgrp
│ │ ├── MpRecipeUIDefaultCreate.txtgrp
│ │ ├── MpRecipeUIMessageBox.txtgrp
│ │ ├── MpRecipeUISize.txtgrp
│ │ ├── MpRecipeUIStatus.txtgrp
│ │ ├── MpRecipeUIText.txtgrp
│ │ ├── MpRecipeUITrueFalseDD.txtgrp
│ │ ├── MpReportUITexts.txtgrp
│ │ ├── MpUnits.txtgrp
│ │ ├── MpUserConfirmText.txtgrp
│ │ ├── MpUserDialogHeader.txtgrp
│ │ ├── MpUserGroups.txtgrp
│ │ ├── MpUserNoYes.txtgrp
│ │ ├── MpUserPasswordCriteria.txtgrp
│ │ ├── MpUserRight.txtgrp
│ │ ├── MpUserRightLevel.txtgrp
│ │ ├── MpUserUIErrorText.txtgrp
│ │ ├── MpUserUIMessageBox.txtgrp
│ │ ├── MpUserUITexts.txtgrp
│ │ ├── MpUserXConfirmText.txtgrp
│ │ ├── MpUserXDialogHeader.txtgrp
│ │ ├── MpUserXGroups.txtgrp
│ │ ├── MpUserXNoYes.txtgrp
│ │ ├── MpUserXPasswordCriteria.txtgrp
│ │ ├── MpUserXRight.txtgrp
│ │ ├── MpUserXRightLevel.txtgrp
│ │ ├── MpUserXRoles.txtgrp
│ │ ├── MpUserXSignUIMessageBox.txtgrp
│ │ ├── MpUserXSignUIText.txtgrp
│ │ ├── MpUserXUIErrorText.txtgrp
│ │ ├── MpUserXUIMessageBox.txtgrp
│ │ ├── MpUserXUITexts.txtgrp
│ │ ├── Mp_httpURL_SDM.txtgrp
│ │ ├── UserLevelNotPermitted.txtgrp
│ │ ├── mappComponents.txtgrp
│ │ └── mappTopics.txtgrp
│ └── UnitGroups
│ │ ├── Energy.vcug
│ │ ├── Length.vcug
│ │ ├── Mass.vcug
│ │ ├── Memory.vcug
│ │ ├── Power.vcug
│ │ ├── Pressure.vcug
│ │ ├── Temperatures.vcug
│ │ └── Volume.vcug
└── mappView
│ ├── Layouts
│ ├── LargeDialog.layout
│ ├── MediumDialog.layout
│ ├── PDFViewerDialog.layout
│ ├── Package.pkg
│ ├── RecipeDialog.layout
│ ├── SmallDialog.layout
│ └── StandardPage.layout
│ ├── Package.pkg
│ ├── Resources
│ ├── Media
│ │ ├── Documents
│ │ │ ├── Package.pkg
│ │ │ ├── mappFrameworkDE.pdf
│ │ │ └── mappFrameworkEN.pdf
│ │ ├── Package.pkg
│ │ └── mappFrameworkSymbols
│ │ │ ├── Alarm
│ │ │ ├── Acknowledge.svg
│ │ │ ├── Alarm.svg
│ │ │ ├── AlarmActive.svg
│ │ │ ├── AlarmHistory.svg
│ │ │ ├── AlarmInactive.svg
│ │ │ ├── AlarmStateActiveAck.svg
│ │ │ ├── AlarmStateActiveNotAck.svg
│ │ │ ├── AlarmStateInactiveAck.svg
│ │ │ ├── AlarmStateInactiveNotAck.svg
│ │ │ ├── Error.svg
│ │ │ └── Package.pkg
│ │ │ ├── Arrow
│ │ │ ├── ArrowLeft.svg
│ │ │ ├── ArrowRight.svg
│ │ │ └── Package.pkg
│ │ │ ├── Backup
│ │ │ ├── CreateBackup.svg
│ │ │ ├── Package.pkg
│ │ │ └── RestoreBackup.svg
│ │ │ ├── Edit
│ │ │ ├── Cancel.svg
│ │ │ ├── Delete.svg
│ │ │ ├── Edit.svg
│ │ │ ├── ExportArchive.svg
│ │ │ ├── Filter.svg
│ │ │ ├── Package.pkg
│ │ │ ├── Save.svg
│ │ │ └── Sort.svg
│ │ │ ├── File
│ │ │ ├── Checkmark.svg
│ │ │ ├── Copy.svg
│ │ │ ├── Cut.svg
│ │ │ ├── Empty.svg
│ │ │ ├── File.svg
│ │ │ ├── FileExporer.svg
│ │ │ ├── FileScan.svg
│ │ │ ├── FileSelected.svg
│ │ │ ├── Files.svg
│ │ │ ├── Folder.svg
│ │ │ ├── MultiSelect.svg
│ │ │ ├── NewDirectory.svg
│ │ │ ├── NewRecipe.svg
│ │ │ ├── PDF.svg
│ │ │ ├── Package.pkg
│ │ │ ├── Package.svg
│ │ │ ├── Paste.svg
│ │ │ ├── Recipe.svg
│ │ │ ├── Refresh.svg
│ │ │ ├── Rename.svg
│ │ │ ├── Search.svg
│ │ │ ├── TXT.svg
│ │ │ └── XML.svg
│ │ │ ├── Gifs
│ │ │ ├── InProgress.gif
│ │ │ ├── InProgressGray.gif
│ │ │ └── Package.pkg
│ │ │ ├── Icons
│ │ │ ├── Export.svg
│ │ │ └── Package.pkg
│ │ │ ├── Logos
│ │ │ ├── BnR_Logo.ico
│ │ │ ├── BnR_Logo.svg
│ │ │ └── Package.pkg
│ │ │ ├── Navigation
│ │ │ ├── Alarm.svg
│ │ │ ├── Audit.svg
│ │ │ ├── Axis.svg
│ │ │ ├── Backup.svg
│ │ │ ├── FileExporer.svg
│ │ │ ├── Help.svg
│ │ │ ├── PackML.svg
│ │ │ ├── Package.pkg
│ │ │ ├── PageDown.svg
│ │ │ ├── PageUp.svg
│ │ │ ├── Recipe.svg
│ │ │ ├── Report.svg
│ │ │ └── UserGroup.svg
│ │ │ ├── Package.pkg
│ │ │ ├── Report
│ │ │ ├── NewReport.svg
│ │ │ ├── Package.pkg
│ │ │ └── View.svg
│ │ │ ├── Symbols
│ │ │ ├── Package.pkg
│ │ │ ├── Settings.svg
│ │ │ ├── Start.svg
│ │ │ ├── Stop.svg
│ │ │ └── WarningRed.svg
│ │ │ └── User
│ │ │ ├── AddUser.svg
│ │ │ ├── DeleteUser.svg
│ │ │ ├── EditUser.svg
│ │ │ ├── ExportUser.svg
│ │ │ ├── ImportUser.svg
│ │ │ ├── Package.pkg
│ │ │ └── Refresh.svg
│ ├── Package.pkg
│ ├── Snippets
│ │ ├── PLCopen.snippet
│ │ ├── Package.pkg
│ │ ├── Recipe.snippet
│ │ └── User.snippet
│ ├── Texts
│ │ ├── Package.pkg
│ │ ├── SystemDialog.tmx
│ │ ├── UserList.tmx
│ │ └── mappFrameworkTexts
│ │ │ ├── AlarmPageTexts.tmx
│ │ │ ├── AuditPageTexts.tmx
│ │ │ ├── AxisPageTexts.tmx
│ │ │ ├── BackupTexts.tmx
│ │ │ ├── FileTexts.tmx
│ │ │ ├── PackMLTexts.tmx
│ │ │ ├── Package.pkg
│ │ │ ├── RecipePageTexts.tmx
│ │ │ ├── ReportTexts.tmx
│ │ │ ├── UserManualPageTexts.tmx
│ │ │ └── UserXPageTexts.tmx
│ └── Themes
│ │ ├── BuRThemeFlat1
│ │ ├── BuRThemeFlat1.theme
│ │ ├── Package.pkg
│ │ └── brease
│ │ │ ├── BuRThemeFlat1.stylesset
│ │ │ ├── Buttons.styles
│ │ │ ├── Charts.styles
│ │ │ ├── Common.styles
│ │ │ ├── Container.styles
│ │ │ ├── Default.styles
│ │ │ ├── Graphic.styles
│ │ │ ├── LabelTexts.styles
│ │ │ ├── Lists.styles
│ │ │ ├── Numeric.styles
│ │ │ ├── Package.pkg
│ │ │ ├── Sequencer.styles
│ │ │ └── System.styles
│ │ └── Package.pkg
│ ├── Visualization
│ ├── Dialogs
│ │ ├── Package.pkg
│ │ └── mappFrameworkDialogs
│ │ │ ├── AreaContents
│ │ │ ├── Package.pkg
│ │ │ └── RecipeDialog_empty.content
│ │ │ ├── AuditDialogs
│ │ │ ├── AuditArchiveSettings
│ │ │ │ ├── AuditArchiveSettings.dialog
│ │ │ │ ├── AuditDialog_ArchiveSettings.content
│ │ │ │ └── Package.pkg
│ │ │ └── Package.pkg
│ │ │ ├── BackupDialogs
│ │ │ ├── BackupAutoSettings
│ │ │ │ ├── BackupAutoSettings.dialog
│ │ │ │ ├── BackupDialog_AutoSettings.content
│ │ │ │ └── Package.pkg
│ │ │ ├── BackupCreate
│ │ │ │ ├── BackupCreate.dialog
│ │ │ │ ├── BackupDialog_Create.content
│ │ │ │ └── Package.pkg
│ │ │ ├── BackupDelete
│ │ │ │ ├── BackupDelete.dialog
│ │ │ │ ├── BackupDialog_Delete.content
│ │ │ │ └── Package.pkg
│ │ │ ├── BackupRestore
│ │ │ │ ├── BackupDialog_Restore.content
│ │ │ │ ├── BackupRestore.dialog
│ │ │ │ └── Package.pkg
│ │ │ ├── BackupUpdate
│ │ │ │ ├── BackupDialog_Update.content
│ │ │ │ ├── BackupUpdate.dialog
│ │ │ │ └── Package.pkg
│ │ │ └── Package.pkg
│ │ │ ├── FileDialogs
│ │ │ ├── FileFIFO
│ │ │ │ ├── FileDialog_FIFO.content
│ │ │ │ ├── FileFIFO.dialog
│ │ │ │ └── Package.pkg
│ │ │ ├── FileMessage
│ │ │ │ ├── FileDialog_Message.content
│ │ │ │ ├── FileMessage.dialog
│ │ │ │ └── Package.pkg
│ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeDialogs
│ │ │ ├── EditRecipe
│ │ │ │ ├── EditRecipe.dialog
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── RecipeDialog_EditButtons.content
│ │ │ │ ├── RecipeDialog_EditMachConfig.content
│ │ │ │ └── RecipeDialog_EditPars.content
│ │ │ ├── NewRecipe
│ │ │ │ ├── NewRecipe.dialog
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── RecipeDialog_NewButtons.content
│ │ │ │ ├── RecipeDialog_NewMachConfig.content
│ │ │ │ └── RecipeDialog_NewPars.content
│ │ │ └── Package.pkg
│ │ │ ├── ReportDialogs
│ │ │ ├── Package.pkg
│ │ │ ├── ReportCreate
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── ReportCreate.dialog
│ │ │ │ └── ReportDialog_Create.content
│ │ │ ├── ReportDelete
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── ReportDelete.dialog
│ │ │ │ └── ReportDialog_Delete.content
│ │ │ └── ReportView
│ │ │ │ ├── Package.pkg
│ │ │ │ ├── ReportDialog_View.content
│ │ │ │ └── ReportView.dialog
│ │ │ └── UserXDialogs
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDisabled
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDisabled.content
│ │ │ └── UserXDisabled.dialog
│ │ │ ├── UserXDuplicate
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDuplicate.content
│ │ │ └── UserXDuplicate.dialog
│ │ │ ├── UserXError
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDialog_Error.content
│ │ │ └── UserXError.dialog
│ │ │ ├── UserXExport
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDialog_Export.content
│ │ │ └── UserXExport.dialog
│ │ │ ├── UserXImport
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDialog_Import.content
│ │ │ └── UserXImport.dialog
│ │ │ └── UserXLogin
│ │ │ ├── Package.pkg
│ │ │ ├── UserXDialog_Login.content
│ │ │ └── UserXLogin.dialog
│ ├── Expressions
│ │ ├── Package.pkg
│ │ └── mappFrameworkExpressions
│ │ │ ├── Axis.expression
│ │ │ ├── AxisType.expressiontype
│ │ │ ├── Package.pkg
│ │ │ ├── Recipe.expression
│ │ │ └── RecipeType.expressiontype
│ ├── Layouts
│ │ └── Package.pkg
│ ├── Package.pkg
│ ├── Pages
│ │ ├── AreaContents
│ │ │ └── Package.pkg
│ │ ├── DemoPage
│ │ │ ├── Demo.page
│ │ │ ├── Help.content
│ │ │ ├── Navigation.content
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ └── mappFrameworkContents
│ │ │ ├── AlarmsContent
│ │ │ ├── AlarmX.content
│ │ │ ├── AlarmXCurrent.content
│ │ │ ├── AlarmXHistory.content
│ │ │ ├── AlarmXQuery.content
│ │ │ └── Package.pkg
│ │ │ ├── AuditContent
│ │ │ ├── Audit.content
│ │ │ ├── AuditQuery.content
│ │ │ ├── AuditTrail.content
│ │ │ ├── CustomEvents.content
│ │ │ └── Package.pkg
│ │ │ ├── AxisContent
│ │ │ ├── Axis.content
│ │ │ ├── AxisAuto.content
│ │ │ ├── AxisManual.content
│ │ │ └── Package.pkg
│ │ │ ├── BackupContent
│ │ │ ├── Backup.content
│ │ │ └── Package.pkg
│ │ │ ├── FileContent
│ │ │ ├── File.content
│ │ │ └── Package.pkg
│ │ │ ├── PackMLContent
│ │ │ ├── PackML.content
│ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeContent
│ │ │ ├── Package.pkg
│ │ │ ├── Recipe.content
│ │ │ ├── RecipeMachConfig.content
│ │ │ └── RecipePars.content
│ │ │ ├── ReportContent
│ │ │ ├── Package.pkg
│ │ │ └── Report.content
│ │ │ └── UserXContent
│ │ │ ├── Package.pkg
│ │ │ ├── UserList.content
│ │ │ └── UserX.content
│ ├── Resources
│ │ ├── Package.pkg
│ │ ├── Snippets
│ │ │ └── Package.pkg
│ │ └── Texts
│ │ │ └── Package.pkg
│ └── Variables
│ │ ├── Package.pkg
│ │ └── mappFrameworkVariables
│ │ ├── File.svar
│ │ ├── PackML.svar
│ │ ├── Package.pkg
│ │ ├── Recipe.svar
│ │ ├── Report.svar
│ │ └── UserX.svar
│ └── Widgets
│ ├── AxisControlWidgetLib
│ ├── AutoControl
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── AxisControl
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── AxisControlWidgetLib.png
│ ├── Description.widgetlibrary
│ ├── Package.pkg
│ └── Resources
│ │ ├── Media
│ │ ├── AxisControl
│ │ │ ├── AlarmActive.svg
│ │ │ ├── GearDisabled.svg
│ │ │ ├── GearEnabled.svg
│ │ │ ├── GearRotating.svg
│ │ │ ├── KnownPosition.svg
│ │ │ ├── Off.svg
│ │ │ ├── Off1.svg
│ │ │ ├── On.svg
│ │ │ ├── On1.svg
│ │ │ ├── Package.pkg
│ │ │ ├── Reset.svg
│ │ │ ├── Start.svg
│ │ │ ├── Stop.svg
│ │ │ ├── UnknownPosition.svg
│ │ │ └── Update.svg
│ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ └── Texts
│ │ ├── AxisFaceplate.tmx
│ │ └── Package.pkg
│ ├── PackMLLib
│ ├── Description.widgetlibrary
│ ├── PackMLInfo
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLInfoBanner
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLMainModule
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLMainModuleSlim
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLModel
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLModelOld
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLModule
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackMLModuleSlim
│ │ ├── Package.pkg
│ │ └── Widget.compoundwidget
│ ├── PackML_support_lib.png
│ ├── Package.pkg
│ └── Resources
│ │ ├── Media
│ │ ├── PackML.svg
│ │ ├── PackMLCmd.svg
│ │ ├── PackMLOld.svg
│ │ ├── PackMLOldCmd.svg
│ │ ├── Package.pkg
│ │ └── TouchMe.svg
│ │ ├── Package.pkg
│ │ └── Texts
│ │ ├── PackMLTexts.tmx
│ │ └── Package.pkg
│ ├── Package.pkg
│ └── RecipeWidgetsLib
│ ├── Description.widgetlibrary
│ ├── Package.pkg
│ ├── RecipeBool
│ ├── Package.pkg
│ └── Widget.compoundwidget
│ ├── RecipeString
│ ├── Package.pkg
│ └── Widget.compoundwidget
│ ├── RecipeValue
│ ├── Package.pkg
│ └── Widget.compoundwidget
│ ├── RecipeWidgetsLib.png
│ └── Resources
│ ├── Media
│ └── Package.pkg
│ ├── Package.pkg
│ └── Texts
│ └── Package.pkg
├── Physical
├── Physical.pkg
├── Simulation
│ ├── Config.pkg
│ ├── Hardware.hw
│ ├── Hardware.hwl
│ ├── Hardware.jpg
│ └── PC
│ │ ├── AccessAndSecurity
│ │ ├── CertificateStore
│ │ │ ├── CertificateRevocationLists
│ │ │ │ └── Package.pkg
│ │ │ ├── CertificateSigningRequests
│ │ │ │ └── Package.pkg
│ │ │ ├── OwnCertificates
│ │ │ │ ├── Certificates
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── Package.pkg
│ │ │ │ └── PrivateKeys
│ │ │ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ └── ThirdPartyCertificates
│ │ │ │ ├── Package.pkg
│ │ │ │ └── SoftwareCertificates
│ │ │ │ └── Package.pkg
│ │ ├── Firewall
│ │ │ ├── Package.pkg
│ │ │ └── Rules.firewallRules
│ │ ├── Package.pkg
│ │ ├── TransportLayerSecurity
│ │ │ └── Package.pkg
│ │ └── UserRoleSystem
│ │ │ ├── Package.pkg
│ │ │ ├── Role.role
│ │ │ └── User.user
│ │ ├── Connectivity
│ │ ├── OpcUA
│ │ │ ├── AlarmMgr.uad
│ │ │ ├── AlarmTest.uad
│ │ │ ├── AuditMgr.uad
│ │ │ ├── AxisMgr.uad
│ │ │ ├── BackupMgr.uad
│ │ │ ├── FileMgr.uad
│ │ │ ├── PackMLMgr.uad
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeMgr.uad
│ │ │ ├── ReportMgr.uad
│ │ │ └── UserXMgr.uad
│ │ └── Package.pkg
│ │ ├── Cpu.per
│ │ ├── Cpu.pkg
│ │ ├── Cpu.sw
│ │ ├── IoMap.iom
│ │ ├── PvMap.vvm
│ │ ├── TextSystem
│ │ ├── Package.pkg
│ │ └── TC.textconfig
│ │ ├── UnitSystem
│ │ └── Package.pkg
│ │ ├── VC
│ │ ├── PS2-Keyboard.dis
│ │ └── Package.pkg
│ │ ├── mappCockpit
│ │ ├── Package.pkg
│ │ └── Settings.mcocfg
│ │ ├── mappControl
│ │ └── Package.pkg
│ │ ├── mappMotion
│ │ ├── AppAxis_1
│ │ │ ├── AppAxis1.axis
│ │ │ ├── Package.pkg
│ │ │ └── VAppAxis1.purevaxcfg
│ │ └── Package.pkg
│ │ ├── mappSafety
│ │ ├── Package.pkg
│ │ ├── SafeApplication
│ │ │ └── Package.pkg
│ │ └── SafeCommissioning
│ │ │ └── Package.pkg
│ │ ├── mappServices
│ │ ├── AlarmX
│ │ │ ├── AlarmXCfg.mpalarmxcore
│ │ │ ├── AlarmXHist.mpalarmxhistory
│ │ │ └── Package.pkg
│ │ ├── AppAxis_1
│ │ │ ├── Axis1Alm.mpalarmxcore
│ │ │ ├── Axis1Grp.mpcomgroup
│ │ │ └── Package.pkg
│ │ ├── Audit
│ │ │ ├── AuditCfg.mpaudittrail
│ │ │ ├── CustomCfg.mpaudittrail
│ │ │ ├── Package.pkg
│ │ │ └── UnitCfg.mpcomunit
│ │ ├── Backup
│ │ │ ├── BackupCfg.mpbackupcore
│ │ │ ├── BackupFile.mpfilemanagerui
│ │ │ └── Package.pkg
│ │ ├── File
│ │ │ ├── FileCfg.mpfilemanagerui
│ │ │ └── Package.pkg
│ │ ├── PackML
│ │ │ ├── PackMLCfg.mppackmlcore
│ │ │ ├── PackMLMain.mppackmlmodule
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeCSV.mprecipecsv
│ │ │ ├── RecipeFile.mpfilemanagerui
│ │ │ └── RecipeXML.mprecipexml
│ │ ├── Report
│ │ │ ├── AdvCfg.mpreportcore
│ │ │ ├── Package.pkg
│ │ │ ├── ReportFile.mpfilemanagerui
│ │ │ └── SimpleCfg.mpreportcore
│ │ └── UserX
│ │ │ ├── Package.pkg
│ │ │ ├── UserXCfg.mpuserx
│ │ │ └── UserXlogin.mpuserxlogin
│ │ ├── mappView
│ │ ├── AlarmX.vis
│ │ ├── AlarmX
│ │ │ ├── AlarmXCurrent_content.binding
│ │ │ ├── AlarmXCurrent_content.eventbinding
│ │ │ ├── AlarmXHistory_content.binding
│ │ │ ├── AlarmXHistory_content.eventbinding
│ │ │ ├── AlarmXQuery_content.binding
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── Audit.vis
│ │ ├── Audit
│ │ │ ├── AuditDialog_ArchiveSettings_content.binding
│ │ │ ├── AuditDialog_ArchiveSettings_content.eventbinding
│ │ │ ├── AuditQuery_content.binding
│ │ │ ├── AuditTrail_content.binding
│ │ │ ├── AuditTrail_content.eventbinding
│ │ │ ├── CustomEvents_content.binding
│ │ │ ├── CustomEvents_content.eventbinding
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── Axis.vis
│ │ ├── Axis
│ │ │ ├── AxisAuto_content.binding
│ │ │ ├── AxisManual_content.binding
│ │ │ ├── AxisRecipeDialog_Edit_content.eventbinding
│ │ │ ├── AxisRecipeDialog_New_content.eventbinding
│ │ │ ├── AxisRecipe_content.eventbinding
│ │ │ ├── Axis_content.binding
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── Backup.vis
│ │ ├── Backup
│ │ │ ├── BackupDialog_AutoSettings_content.binding
│ │ │ ├── BackupDialog_AutoSettings_content.eventbinding
│ │ │ ├── BackupDialog_Create_content.binding
│ │ │ ├── BackupDialog_Create_content.eventbinding
│ │ │ ├── BackupDialog_Delete_content.eventbinding
│ │ │ ├── BackupDialog_Restore_content.eventbinding
│ │ │ ├── BackupDialog_Update_content.binding
│ │ │ ├── BackupDialog_Update_content.eventbinding
│ │ │ ├── Backup_content.binding
│ │ │ ├── Backup_content.eventbinding
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── Config.mappviewcfg
│ │ ├── DemoPage
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── File.vis
│ │ ├── File
│ │ │ ├── FileDialog_FIFO_dialog_content.binding
│ │ │ ├── FileDialog_FIFO_dialog_content.eventbinding
│ │ │ ├── FileDialog_Message_dialog_content.binding
│ │ │ ├── FileDialog_Message_dialog_content.eventbinding
│ │ │ ├── File_content.binding
│ │ │ ├── File_content.eventbinding
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── PackML.vis
│ │ ├── PackML
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ ├── PackML_content.binding
│ │ │ ├── PackML_content.eventbinding
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe.vis
│ │ ├── Recipe
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeDialog_Edit_content.eventbinding
│ │ │ ├── RecipeDialog_NewMachConfig_content.binding
│ │ │ ├── RecipeDialog_NewPars_content.binding
│ │ │ ├── RecipeDialog_New_content.eventbinding
│ │ │ ├── RecipeMachConfig_content.binding
│ │ │ ├── RecipePars_content.binding
│ │ │ ├── Recipe_content.binding
│ │ │ └── Recipe_content.eventbinding
│ │ ├── Report.vis
│ │ ├── Report
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ ├── Package.pkg
│ │ │ ├── ReportDialog_Create_content.binding
│ │ │ ├── ReportDialog_Create_content.eventbinding
│ │ │ ├── ReportDialog_Delete_content.eventbinding
│ │ │ ├── ReportDialog_View_content.binding
│ │ │ ├── ReportDialog_View_content.eventbinding
│ │ │ ├── Report_content.binding
│ │ │ └── Report_content.eventbinding
│ │ ├── UserX.vis
│ │ ├── UserX
│ │ │ ├── Navigation_content.binding
│ │ │ ├── Navigation_content.eventbinding
│ │ │ ├── Package.pkg
│ │ │ ├── UserList_content.eventbinding
│ │ │ ├── UserXDialog_Disabled_content.eventbinding
│ │ │ ├── UserXDialog_Duplicate_content.binding
│ │ │ ├── UserXDialog_Duplicate_content.eventbinding
│ │ │ ├── UserXDialog_Error_content.binding
│ │ │ ├── UserXDialog_Export_content.binding
│ │ │ ├── UserXDialog_Export_content.eventbinding
│ │ │ ├── UserXDialog_Import_content.binding
│ │ │ ├── UserXDialog_Import_content.eventbinding
│ │ │ └── UserX_content.binding
│ │ └── Visualization.vis
│ │ └── mappVision
│ │ └── Package.pkg
├── SimulationVC4
│ ├── Config.pkg
│ ├── Hardware.hw
│ ├── Hardware.hwl
│ ├── Hardware.jpg
│ └── PC
│ │ ├── AccessAndSecurity
│ │ ├── CertificateStore
│ │ │ ├── CertificateRevocationLists
│ │ │ │ └── Package.pkg
│ │ │ ├── CertificateSigningRequests
│ │ │ │ └── Package.pkg
│ │ │ ├── OwnCertificates
│ │ │ │ ├── Certificates
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── Package.pkg
│ │ │ │ └── PrivateKeys
│ │ │ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ └── ThirdPartyCertificates
│ │ │ │ ├── Package.pkg
│ │ │ │ └── SoftwareCertificates
│ │ │ │ └── Package.pkg
│ │ ├── Firewall
│ │ │ ├── Package.pkg
│ │ │ └── Rules.firewallRules
│ │ ├── Package.pkg
│ │ ├── TransportLayerSecurity
│ │ │ └── Package.pkg
│ │ └── UserRoleSystem
│ │ │ └── Package.pkg
│ │ ├── Connectivity
│ │ ├── OpcUA
│ │ │ ├── Package.pkg
│ │ │ └── ReportMgr.uad
│ │ └── Package.pkg
│ │ ├── Cpu.per
│ │ ├── Cpu.pkg
│ │ ├── Cpu.sw
│ │ ├── IoMap.iom
│ │ ├── PvMap.vvm
│ │ ├── TextSystem
│ │ └── Package.pkg
│ │ ├── UnitSystem
│ │ └── Package.pkg
│ │ ├── VC
│ │ ├── PS2-Keyboard.dis
│ │ └── Package.pkg
│ │ ├── mappCockpit
│ │ └── Package.pkg
│ │ ├── mappControl
│ │ └── Package.pkg
│ │ ├── mappMotion
│ │ ├── AppAxis_1
│ │ │ └── Package.pkg
│ │ └── Package.pkg
│ │ ├── mappSafety
│ │ ├── Package.pkg
│ │ ├── SafeApplication
│ │ │ └── Package.pkg
│ │ └── SafeCommissioning
│ │ │ └── Package.pkg
│ │ ├── mappServices
│ │ ├── AlarmX
│ │ │ └── Package.pkg
│ │ ├── AppAxis_1
│ │ │ └── Package.pkg
│ │ ├── Audit
│ │ │ └── Package.pkg
│ │ ├── Backup
│ │ │ └── Package.pkg
│ │ ├── File
│ │ │ └── Package.pkg
│ │ ├── PackML
│ │ │ ├── PackMLCfg.mppackmlcore
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ │ └── Package.pkg
│ │ ├── Report
│ │ │ └── Package.pkg
│ │ └── UserX
│ │ │ └── Package.pkg
│ │ ├── mappView
│ │ └── Package.pkg
│ │ └── mappVision
│ │ └── Package.pkg
├── SourceReference
│ ├── Config.pkg
│ ├── Hardware.hw
│ ├── Hardware.hwl
│ ├── Hardware.jpg
│ └── PC
│ │ ├── AccessAndSecurity
│ │ ├── CertificateStore
│ │ │ ├── CertificateRevocationLists
│ │ │ │ └── Package.pkg
│ │ │ ├── CertificateSigningRequests
│ │ │ │ └── Package.pkg
│ │ │ ├── OwnCertificates
│ │ │ │ ├── Certificates
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── Package.pkg
│ │ │ │ └── PrivateKeys
│ │ │ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ └── ThirdPartyCertificates
│ │ │ │ ├── Package.pkg
│ │ │ │ └── SoftwareCertificates
│ │ │ │ └── Package.pkg
│ │ ├── Firewall
│ │ │ ├── Package.pkg
│ │ │ └── Rules.firewallRules
│ │ ├── Package.pkg
│ │ ├── TransportLayerSecurity
│ │ │ └── Package.pkg
│ │ └── UserRoleSystem
│ │ │ └── Package.pkg
│ │ ├── Connectivity
│ │ ├── OpcUA
│ │ │ └── Package.pkg
│ │ └── Package.pkg
│ │ ├── Cpu.per
│ │ ├── Cpu.pkg
│ │ ├── Cpu.sw
│ │ ├── IoMap.iom
│ │ ├── PvMap.vvm
│ │ ├── TextSystem
│ │ └── Package.pkg
│ │ ├── UnitSystem
│ │ └── Package.pkg
│ │ ├── mappCockpit
│ │ └── Package.pkg
│ │ ├── mappControl
│ │ └── Package.pkg
│ │ ├── mappMotion
│ │ ├── AppAxis_1
│ │ │ └── Package.pkg
│ │ └── Package.pkg
│ │ ├── mappSafety
│ │ ├── Package.pkg
│ │ ├── SafeApplication
│ │ │ └── Package.pkg
│ │ └── SafeCommissioning
│ │ │ └── Package.pkg
│ │ ├── mappServices
│ │ ├── AlarmX
│ │ │ └── Package.pkg
│ │ ├── AppAxis_1
│ │ │ └── Package.pkg
│ │ ├── Audit
│ │ │ └── Package.pkg
│ │ ├── Backup
│ │ │ └── Package.pkg
│ │ ├── File
│ │ │ └── Package.pkg
│ │ ├── PackML
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ │ └── Package.pkg
│ │ ├── Records
│ │ │ └── Package.pkg
│ │ └── UserX
│ │ │ └── Package.pkg
│ │ ├── mappView
│ │ ├── AlarmX
│ │ │ └── Package.pkg
│ │ ├── Audit
│ │ │ └── Package.pkg
│ │ ├── Axis
│ │ │ └── Package.pkg
│ │ ├── Backup
│ │ │ └── Package.pkg
│ │ ├── DemoPage
│ │ │ └── Package.pkg
│ │ ├── File
│ │ │ └── Package.pkg
│ │ ├── PackML
│ │ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ │ └── Package.pkg
│ │ ├── Report
│ │ │ └── Package.pkg
│ │ └── UserX
│ │ │ └── Package.pkg
│ │ └── mappVision
│ │ └── Package.pkg
├── UnitTest
│ ├── Config.pkg
│ ├── Hardware.hw
│ ├── Hardware.hwl
│ ├── Hardware.jpg
│ ├── PC_any
│ │ ├── AccessAndSecurity
│ │ │ ├── CertificateStore
│ │ │ │ ├── CertificateRevocationLists
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── CertificateSigningRequests
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── OwnCertificates
│ │ │ │ │ ├── Certificates
│ │ │ │ │ │ └── Package.pkg
│ │ │ │ │ ├── Package.pkg
│ │ │ │ │ └── PrivateKeys
│ │ │ │ │ │ └── Package.pkg
│ │ │ │ ├── Package.pkg
│ │ │ │ └── ThirdPartyCertificates
│ │ │ │ │ ├── Package.pkg
│ │ │ │ │ └── SoftwareCertificates
│ │ │ │ │ └── Package.pkg
│ │ │ ├── Firewall
│ │ │ │ ├── Package.pkg
│ │ │ │ └── Rules.firewallRules
│ │ │ ├── Package.pkg
│ │ │ ├── TransportLayerSecurity
│ │ │ │ └── Package.pkg
│ │ │ └── UserRoleSystem
│ │ │ │ └── Package.pkg
│ │ ├── Cpu.per
│ │ ├── Cpu.pkg
│ │ ├── Cpu.sw
│ │ ├── IOMap.iom
│ │ ├── PvMap.vvm
│ │ ├── TextSystem
│ │ │ └── Package.pkg
│ │ ├── UnitTest
│ │ │ ├── AlarmMgr.vvm
│ │ │ ├── AppAxis.vvm
│ │ │ ├── AuditMgr.vvm
│ │ │ ├── BackupMgr.vvm
│ │ │ ├── FileMgr.vvm
│ │ │ ├── Package.pkg
│ │ │ ├── RecipeMgr.vvm
│ │ │ ├── ReportMgr.vvm
│ │ │ └── UserXMgr.vvm
│ │ ├── mappMotion
│ │ │ └── Package.pkg
│ │ └── mappServices
│ │ │ ├── AlarmX
│ │ │ └── Package.pkg
│ │ │ ├── AppAxis_1
│ │ │ └── Package.pkg
│ │ │ ├── Audit
│ │ │ └── Package.pkg
│ │ │ ├── Backup
│ │ │ └── Package.pkg
│ │ │ ├── File
│ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ ├── Recipe
│ │ │ └── Package.pkg
│ │ │ ├── Records
│ │ │ └── Package.pkg
│ │ │ └── UserX
│ │ │ └── Package.pkg
│ └── UtTestConfiguration.xml
└── UnitTestVC4
│ ├── Config.pkg
│ ├── Hardware.hw
│ ├── Hardware.hwl
│ ├── Hardware.jpg
│ ├── PC_any
│ ├── AccessAndSecurity
│ │ ├── CertificateStore
│ │ │ ├── CertificateRevocationLists
│ │ │ │ └── Package.pkg
│ │ │ ├── CertificateSigningRequests
│ │ │ │ └── Package.pkg
│ │ │ ├── OwnCertificates
│ │ │ │ ├── Certificates
│ │ │ │ │ └── Package.pkg
│ │ │ │ ├── Package.pkg
│ │ │ │ └── PrivateKeys
│ │ │ │ │ └── Package.pkg
│ │ │ ├── Package.pkg
│ │ │ └── ThirdPartyCertificates
│ │ │ │ ├── Package.pkg
│ │ │ │ └── SoftwareCertificates
│ │ │ │ └── Package.pkg
│ │ ├── Firewall
│ │ │ ├── Package.pkg
│ │ │ └── Rules.firewallRules
│ │ ├── Package.pkg
│ │ ├── TransportLayerSecurity
│ │ │ └── Package.pkg
│ │ └── UserRoleSystem
│ │ │ └── Package.pkg
│ ├── Cpu.per
│ ├── Cpu.pkg
│ ├── Cpu.sw
│ ├── IoMap.iom
│ ├── PvMap.vvm
│ ├── TextSystem
│ │ └── Package.pkg
│ ├── UnitTest
│ │ ├── AlarmMgr.vvm
│ │ ├── AppAxis.vvm
│ │ ├── AuditMgr.vvm
│ │ ├── BackupMgr.vvm
│ │ ├── FileMgr.vvm
│ │ ├── Package.pkg
│ │ ├── RecipeMgr.vvm
│ │ ├── ReportMgr.vvm
│ │ └── UserXMgr.vvm
│ ├── mappMotion
│ │ └── Package.pkg
│ └── mappServices
│ │ ├── AlarmX
│ │ └── Package.pkg
│ │ ├── AppAxis_1
│ │ └── Package.pkg
│ │ ├── Audit
│ │ └── Package.pkg
│ │ ├── Backup
│ │ └── Package.pkg
│ │ ├── File
│ │ └── Package.pkg
│ │ ├── Package.pkg
│ │ ├── Recipe
│ │ └── Package.pkg
│ │ ├── Records
│ │ └── Package.pkg
│ │ └── UserX
│ │ └── Package.pkg
│ └── UtTestConfiguration.xml
└── mappFramework.apj
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.py filter=tabspace
2 | *.st filter=tabspace
3 | *.c filter=tabspace
4 | *.h filter=tabspace
5 | *.cpp filter=tabspace
6 | *.hpp filter=tabspace
7 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Git Repository File Ignore Specifications
2 |
3 | # Ignore .zip files, for the moment
4 | *.zip
5 |
6 | # ignore temp files
7 | *~
8 | ~*
9 | *.[Bb]ak
10 | *.[Oo]rig
11 |
12 | #ignore windows files
13 | desktop.ini
--------------------------------------------------------------------------------
/mappFramework/Diagnosis/Simulation/PC/UserXMgr.tc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Diagnosis/Simulation/PC/UserXMgr.tc
--------------------------------------------------------------------------------
/mappFramework/Logical/ChineseHelp/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/ChineseHelp/mappFramework.chm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/ChineseHelp/mappFramework.chm
--------------------------------------------------------------------------------
/mappFramework/Logical/Global.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Global.var:
--------------------------------------------------------------------------------
1 |
2 | VAR
3 |
4 | END_VAR
5 |
6 | VAR CONSTANT
7 |
8 | END_VAR
9 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Infrastructure/VC4/PackML/PackMLMgr/PackMLMgr.typ:
--------------------------------------------------------------------------------
1 | (*Structure types*)
2 | (*Enumerations*)
3 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsBrStr/AsBrStr.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsBrStr/AsBrStr.var:
--------------------------------------------------------------------------------
1 |
2 | VAR CONSTANT
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsBrWStr/AsBrWStr.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsIODiag/AsIODiag.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 | END_TYPE
4 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsIecCon/AsIecCon.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsIecCon/AsIecCon.var:
--------------------------------------------------------------------------------
1 |
2 | VAR CONSTANT
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsUSB/AsUSB.typ:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/AsUSB/AsUSB.typ
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsUSB/AsUSB.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/AsUSB/AsUSB.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/AsZip/AsZip.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/CoTrace/SG4/ARM/CoTrace.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/CoTrace/SG4/ARM/CoTrace.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/CoTrace/SG4/ARM/libCoTrace.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/CoTrace/SG4/ARM/libCoTrace.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/CoTrace/SG4/IA32/CoTrace.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/CoTrace/SG4/IA32/CoTrace.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/CoTrace/SG4/IA32/libCoTrace.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/CoTrace/SG4/IA32/libCoTrace.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpAx/McAcpAx.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpAx/McAcpAx.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpAx/SG4/ARM/McAcpAx.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpAx/SG4/ARM/McAcpAx.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpAx/SG4/ARM/libMcAcpAx.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpAx/SG4/ARM/libMcAcpAx.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpAx/SG4/IA32/McAcpAx.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpAx/SG4/IA32/McAcpAx.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpAx/SG4/IA32/libMcAcpAx.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpAx/SG4/IA32/libMcAcpAx.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpPar/McAcpPar.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpPar/McAcpPar.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpPar/SG4/ARM/McAcpPar.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpPar/SG4/ARM/McAcpPar.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpPar/SG4/ARM/libMcAcpPar.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpPar/SG4/ARM/libMcAcpPar.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpPar/SG4/IA32/McAcpPar.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpPar/SG4/IA32/McAcpPar.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAcpPar/SG4/IA32/libMcAcpPar.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAcpPar/SG4/IA32/libMcAcpPar.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAxis/McAxis.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAxis/McAxis.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAxis/SG4/ARM/McAxis.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAxis/SG4/ARM/McAxis.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAxis/SG4/ARM/libMcAxis.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAxis/SG4/ARM/libMcAxis.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAxis/SG4/IA32/McAxis.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAxis/SG4/IA32/McAxis.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McAxis/SG4/IA32/libMcAxis.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McAxis/SG4/IA32/libMcAxis.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McBase/McBase.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McBase/McBase.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McBase/SG4/ARM/McBase.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McBase/SG4/ARM/McBase.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McBase/SG4/ARM/libMcBase.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McBase/SG4/ARM/libMcBase.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McBase/SG4/IA32/McBase.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McBase/SG4/IA32/McBase.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McBase/SG4/IA32/libMcBase.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McBase/SG4/IA32/libMcBase.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/McPureVAx.fun:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/McPureVAx.fun
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/McPureVAx.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/McPureVAx.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/SG4/ARM/McPureVAx.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/SG4/ARM/McPureVAx.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/SG4/ARM/libMcPureVAx.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/SG4/ARM/libMcPureVAx.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/SG4/IA32/McPureVAx.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/SG4/IA32/McPureVAx.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/McPureVAx/SG4/IA32/libMcPureVAx.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/McPureVAx/SG4/IA32/libMcPureVAx.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAlarmX/SG4/ARM/MpAlarmX.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAlarmX/SG4/ARM/MpAlarmX.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAlarmX/SG4/ARM/libMpAlarmX.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAlarmX/SG4/ARM/libMpAlarmX.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAlarmX/SG4/IA32/MpAlarmX.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAlarmX/SG4/IA32/MpAlarmX.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAlarmX/SG4/IA32/libMpAlarmX.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAlarmX/SG4/IA32/libMpAlarmX.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAudit/SG4/ARM/MpAudit.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAudit/SG4/ARM/MpAudit.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAudit/SG4/ARM/libMpAudit.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAudit/SG4/ARM/libMpAudit.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAudit/SG4/IA32/MpAudit.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAudit/SG4/IA32/MpAudit.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAudit/SG4/IA32/libMpAudit.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAudit/SG4/IA32/libMpAudit.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAxis/SG4/ARM/MpAxis.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAxis/SG4/ARM/MpAxis.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAxis/SG4/ARM/libMpAxis.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAxis/SG4/ARM/libMpAxis.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAxis/SG4/IA32/MpAxis.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAxis/SG4/IA32/MpAxis.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpAxis/SG4/IA32/libMpAxis.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpAxis/SG4/IA32/libMpAxis.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBackup/SG4/ARM/MpBackup.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBackup/SG4/ARM/MpBackup.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBackup/SG4/ARM/libMpBackup.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBackup/SG4/ARM/libMpBackup.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBackup/SG4/IA32/MpBackup.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBackup/SG4/IA32/MpBackup.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBackup/SG4/IA32/libMpBackup.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBackup/SG4/IA32/libMpBackup.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/MpBase.fun:
--------------------------------------------------------------------------------
1 |
2 | FUNCTION MpComHandle : UDINT
3 | END_FUNCTION
4 |
5 | FUNCTION MpComVersion : UDINT
6 | END_FUNCTION
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/MpBase.var:
--------------------------------------------------------------------------------
1 | VAR CONSTANT
2 | mpCOM_MAIN_INT : UDINT := 1;
3 | mpCOM_STANDALONE_INT : UDINT := 2;
4 | mpCOM_MAIN : MpComIdentType := (Internal:=[mpCOM_MAIN_INT,0]);
5 | mpCOM_STANDALONE : MpComIdentType := (Internal:=[mpCOM_STANDALONE_INT,0]);
6 | END_VAR
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/SG4/ARM/MpBase.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBase/SG4/ARM/MpBase.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/SG4/ARM/libMpBase.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBase/SG4/ARM/libMpBase.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/SG4/IA32/MpBase.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBase/SG4/IA32/MpBase.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpBase/SG4/IA32/libMpBase.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpBase/SG4/IA32/libMpBase.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpCom/MpCom.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpCom/MpCom.var
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpCom/SG4/ARM/MpCom.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpCom/SG4/ARM/MpCom.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpCom/SG4/ARM/libMpCom.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpCom/SG4/ARM/libMpCom.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpCom/SG4/IA32/MpCom.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpCom/SG4/IA32/MpCom.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpCom/SG4/IA32/libMpCom.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpCom/SG4/IA32/libMpCom.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpFile/SG4/ARM/MpFile.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpFile/SG4/ARM/MpFile.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpFile/SG4/ARM/libMpFile.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpFile/SG4/ARM/libMpFile.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpFile/SG4/IA32/MpFile.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpFile/SG4/IA32/MpFile.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpFile/SG4/IA32/libMpFile.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpFile/SG4/IA32/libMpFile.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpPackML/SG4/ARM/MpPackML.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpPackML/SG4/ARM/MpPackML.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpPackML/SG4/ARM/libMpPackML.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpPackML/SG4/ARM/libMpPackML.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpPackML/SG4/IA32/MpPackML.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpPackML/SG4/IA32/MpPackML.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpPackML/SG4/IA32/libMpPackML.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpPackML/SG4/IA32/libMpPackML.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpRecipe/SG4/ARM/MpRecipe.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpRecipe/SG4/ARM/MpRecipe.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpRecipe/SG4/ARM/libMpRecipe.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpRecipe/SG4/ARM/libMpRecipe.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpRecipe/SG4/IA32/MpRecipe.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpRecipe/SG4/IA32/MpRecipe.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpRecipe/SG4/IA32/libMpRecipe.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpRecipe/SG4/IA32/libMpRecipe.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpReport/MpReportAlarm.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 | MpReportCoreAlarmEnum :
4 | ( (* Alarms of MpReport Core *)
5 | mpREPORT_ALM_GENERATE_FAILED := 0 (* Report Generation Failed. *)
6 | );
7 | END_TYPE
8 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpReport/SG4/ARM/MpReport.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpReport/SG4/ARM/MpReport.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpReport/SG4/ARM/libMpReport.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpReport/SG4/ARM/libMpReport.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpReport/SG4/IA32/MpReport.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpReport/SG4/IA32/MpReport.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpReport/SG4/IA32/libMpReport.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpReport/SG4/IA32/libMpReport.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/Constants.var:
--------------------------------------------------------------------------------
1 | VAR CONSTANT
2 |
3 | END_VAR
4 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/MpServer.fun:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpServer/MpServer.fun
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/SG4/ARM/MpServer.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpServer/SG4/ARM/MpServer.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/SG4/ARM/libMpServer.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpServer/SG4/ARM/libMpServer.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/SG4/IA32/MpServer.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpServer/SG4/IA32/MpServer.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/SG4/IA32/libMpServer.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpServer/SG4/IA32/libMpServer.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpServer/Types.typ:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpUserX/MpUserXAlarm.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 | MpUserXLoginAlarmEnum :
4 | ( (* Alarms of MpUser Login *)
5 | mpUSERX_ALM_USER_LOCKED := 0 (*User blocked due to too many failed login attempts *)
6 | );
7 | END_TYPE
8 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpUserX/SG4/ARM/MpUserX.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpUserX/SG4/ARM/MpUserX.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpUserX/SG4/ARM/libMpUserX.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpUserX/SG4/ARM/libMpUserX.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpUserX/SG4/IA32/MpUserX.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpUserX/SG4/IA32/MpUserX.br
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/MpUserX/SG4/IA32/libMpUserX.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/Libraries/MpUserX/SG4/IA32/libMpUserX.a
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/operator/SG4/operator.h:
--------------------------------------------------------------------------------
1 | /* This library does not contain C code */
2 |
3 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/operator/operator.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/operator/operator.var:
--------------------------------------------------------------------------------
1 |
2 | VAR CONSTANT
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/standard/standard.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 |
4 | END_TYPE
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/Libraries/standard/standard.var:
--------------------------------------------------------------------------------
1 |
2 | VAR CONSTANT
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AppAxis_1/AppAxis_1/AutomaticCommand.st:
--------------------------------------------------------------------------------
1 | // Returns True if an automatic command is active
2 | FUNCTION AutomaticCommand
3 |
4 | AutomaticCommand := Commands.Start;
5 |
6 | END_FUNCTION
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AppAxis_1/AppAxis_1/ManualCommand.st:
--------------------------------------------------------------------------------
1 | // Returns True if a manual command is active, false otherwise
2 | FUNCTION ManualCommand
3 |
4 | ManualCommand := Commands.JogNegative OR Commands.JogPositive OR Commands.MoveAbsolute OR Commands.MoveAdditive OR Commands.MoveVelocity;
5 |
6 | END_FUNCTION
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AppAxis_1/AppAxis_1/Variables.var:
--------------------------------------------------------------------------------
1 | VAR RETAIN
2 | RestorePosition_AppAxis_1 : {REDUND_UNREPLICABLE} McPureVAxRestorePosType; (*Data structure for retsore position mode*)
3 | END_VAR
4 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AxisTemplate/AxisMgr/AutomaticCommand.st:
--------------------------------------------------------------------------------
1 | // Returns True if an automatic command is active
2 | FUNCTION AutomaticCommand
3 |
4 | AutomaticCommand := Commands.Start;
5 |
6 | END_FUNCTION
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AxisTemplate/AxisMgr/ManualCommand.st:
--------------------------------------------------------------------------------
1 | // Returns True if a manual command is active, false otherwise
2 | FUNCTION ManualCommand
3 |
4 | ManualCommand := Commands.JogNegative OR Commands.JogPositive OR Commands.MoveAbsolute OR Commands.MoveAdditive OR Commands.MoveVelocity;
5 |
6 | END_FUNCTION
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/MachineControl/AxisTemplate/AxisMgr/Variables.var:
--------------------------------------------------------------------------------
1 | VAR RETAIN
2 | RestorePosition_AxisTemplate : {REDUND_UNREPLICABLE} McAcpAxRestorePosType; (*Data structure for retsore position mode*)
3 | END_VAR
4 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/AlarmX/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Audit/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Backup/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Common/CommonUT/CommonTypes.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 | TestCaseEnum :
4 | (
5 | TEST_ARRANGE,
6 | TEST_ACT,
7 | TEST_ASSERT
8 | );
9 | END_TYPE
10 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Common/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/File/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/AssertImpl.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/AssertImpl.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestCaller.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestCaller.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestCase.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestCase.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestResult.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/TestResult.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/utRunnerTestSuite.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/Arm/utRunnerTestSuite.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/AssertImpl.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/AssertImpl.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestCaller.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestCaller.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestCase.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestCase.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestResult.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/TestResult.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/utRunnerTestSuite.c.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UnitTest/SG4/utRunnerTestSuite.c.o
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/Arm/UtMgr.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/Arm/UtMgr.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/Arm/libUtMgr.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/Arm/libUtMgr.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/UtMgr.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/UtMgr.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/libUtMgr.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtMgr/SG4/libUtMgr.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/Arm/UtWs.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/Arm/UtWs.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/Arm/libUtWs.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/Arm/libUtWs.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/UtWs.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/UtWs.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/libUtWs.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/UtWs/SG4/libUtWs.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG3/libsnprintf.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG3/libsnprintf.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG3/snprintf.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG3/snprintf.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/Arm/libsnprintf.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/Arm/libsnprintf.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/Arm/snprintf.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/Arm/snprintf.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/libsnprintf.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/libsnprintf.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/snprintf.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SG4/snprintf.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SGC/libsnprintf.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SGC/libsnprintf.a
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Libraries/snprintf/SGC/snprintf.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UnitTest/Libraries/snprintf/SGC/snprintf.br
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Recipe/RecipeMgrUnitTest/testSuite.h:
--------------------------------------------------------------------------------
1 | #ifndef __TEST_SUITE_H__
2 | #define __TEST_SUITE_H__
3 |
4 | bool RecipeExists(char* recipeName);
5 | bool SelectRecipe(char* wantedRecipe);
6 | testStatusEnum RemoveNonDefaultFiles(char* filter, char* selectFile, const char* category);
7 |
8 | #endif
9 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Templates/HelperTool_Supported/utTemplate_automated/autoGeneratedFile.c:
--------------------------------------------------------------------------------
1 | /* This content will be auto updated by the helper tool */
2 |
3 | #include "UnitTest.h"
4 |
5 |
6 | UNITTEST_TESTSET_FIXTURES (utTestSets)
7 | {
8 | {
9 | 0
10 | }
11 | };
12 | UNTITTEST_TESTSET_HANDLER();
13 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/Usb/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTest/UserX/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTestVC4/Audit/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTestVC4/Common/CommonUT/CommonTypes.typ:
--------------------------------------------------------------------------------
1 |
2 | TYPE
3 | TestCaseEnum :
4 | (
5 | TEST_ARRANGE,
6 | TEST_ACT,
7 | TEST_ASSERT
8 | );
9 | END_TYPE
10 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTestVC4/Common/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTestVC4/File/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UnitTestVC4/Usb/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/AdvancedReport_DE.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/AdvancedReport_DE.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/AdvancedReport_EN.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/AdvancedReport_EN.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_25px.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_25px.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_29px.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_29px.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_33px.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_33px.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_B&R_Logo_Tagline_at_the_side-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_B&R_Logo_Tagline_at_the_side-01.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_HD.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Screen_RGB_HD.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_below_RGB_HD.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_below_RGB_HD.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_below_Screen_RGB.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_below_Screen_RGB.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_01.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_02.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_HD-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_HD-02.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_HD.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/B&R_Logo_Tagline_separate_Screen_RGB_HD.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/LogoWithTag.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/LogoWithTag.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/Images/SmallLogo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/Images/SmallLogo.jpg
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/SimpleReport_DE.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/SimpleReport_DE.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/UserPartition/Report/SimpleReport_EN.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/UserPartition/Report/SimpleReport_EN.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/InstallInProgress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/InstallInProgress.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_Backtrace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_Backtrace.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_History.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_History.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_List.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_List.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_ListDetail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_ListDetail.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_ListHistory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarmX_ListHistory.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_AcknowledgeReset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_AcknowledgeReset.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Active.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_BypassON.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_BypassON.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Inactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Inactive.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_NotQuit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_NotQuit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Quit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_Quit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_QuitAll.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_QuitAll.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_ResetAcknowledge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAlarm_ResetAcknowledge.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_3rdPartyEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_3rdPartyEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_AlarmEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_AlarmEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CheckBox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CheckBox.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CheckBox_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CheckBox_checked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CustomEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_CustomEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_PackMLEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_PackMLEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_RecipeEvents.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_RecipeEvents.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_TweetEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_TweetEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_UserEvent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_UserEvent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_VC4Event.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAudit_VC4Event.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Alarm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Alarm.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_AlarmActive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_AlarmActive.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearDisabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearDisabled.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearEnabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearEnabled.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearRotating.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_GearRotating.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Gear_Off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Gear_Off.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Gear_On.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Gear_On.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_KnownPosition.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_KnownPosition.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Off.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Off1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Off1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_On.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_On.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_On1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_On1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Reset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Reset.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Stop.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_UnknownPosition.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_UnknownPosition.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpAxis_Warning.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBackTransparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBackTransparent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBackgroundSemiTransparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBackgroundSemiTransparent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBorderSlider09x09.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpBorderSlider09x09.PNG
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_control_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_control_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_decrease.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_decrease.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_decrease_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_decrease_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_default.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_default_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_default_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_device_selected_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_device_selected_left.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_device_unselected_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_device_unselected_left.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_error.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_bottom.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_left.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pres_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pres_bottom.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pres_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pres_top.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_press_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_press_left.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_global_area_top.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_increase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_increase.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_increase_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_increase_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_off.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_on.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_radio_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_radio_selected.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_radio_unselected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_radio_unselected.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_ready.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_ready.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_multi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_multi.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_multi_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_multi_press.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_down_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_multi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_multi.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_multi_press.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_multi_press.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_left_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_multi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_multi.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_multi_pres.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_multi_pres.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_right_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_multi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_multi.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_multi_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_multi_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpButton_scroll_up_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckBoxGray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckBoxGray.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckBoxOrange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckBoxOrange.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small_checked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpCheckbox_small_gray.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpClickMe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpClickMe.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerAlarm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerAlarm.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerAlarm_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerAlarm_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerInformation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerInformation.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerInformation_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerInformation_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerUI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerUI.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerUI_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerUI_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerWarning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerWarning.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerWarning_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpComLoggerWarning_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_DevBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_DevBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_LowerLimit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_LowerLimit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MaxBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MaxBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MeanBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MeanBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MinBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_MinBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_NoLimit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_NoLimit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_RangeBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_RangeBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_UpperLimit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_UpperLimit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_UpperLimit_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_UpperLimit_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_WithinLimit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_WithinLimit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_WithinLimit_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpData_WithinLimit_0.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowDown.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowLeft.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowRight.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowUp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_ArrowUp.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_BMP.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_BMP.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_CSV.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_CSV.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_Cancel.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_DOC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_DOC.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_FILE.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_FILE.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_FOLDER.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_FOLDER.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_HTML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_HTML.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_JPG.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_JPG.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_OK.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_OK.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_PDF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_PDF.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_Scan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_Scan.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_TXT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_TXT.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_UNKOWN.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_UNKOWN.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER10.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER2.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER3.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER4.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER5.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER6.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER7.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER8.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_USER9.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_XLS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_XLS.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_XML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFile_XML.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFrameHeader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFrameHeader.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFrameInvisible.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpFrameInvisible.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpGroupControl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpGroupControl.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_AlarmX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_AlarmX.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Audit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Audit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Axis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Axis.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Backup.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_FileExporer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_FileExporer.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarm.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmX.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistory.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistoryClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistoryClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistoryExport.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAlarmXHistoryExport.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAudit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAudit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAuditClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAuditClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis1Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxis1Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxisClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpAxisClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc2Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc2Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc3Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCnc3Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpCom.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpComClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpComClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpData.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpData.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDataClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDataClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta3Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta3Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta4Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpDelta4Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpEnergy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpEnergy.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpEnergyClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpEnergyClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpFile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpFile.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpFileClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpFileClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpHeat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpHeat.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOee.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOee.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeList.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeList.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeTimeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeTimeline.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeTrend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpOeeTrend.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpPackML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpPackML.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpPackMLClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpPackMLClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipe.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeX.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeX.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeXClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRecipeXClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm4.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm4Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm4Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm5.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm5Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm5Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm6.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm6Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpRoboArm6Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSafetyXClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSafetyXClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara2Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara2Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara4Click.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpScara4Click.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSpindle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSpindle.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSpindleClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpSpindleClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTeach.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTeach.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTeachClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTeachClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTrend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTrend.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTrendClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTrendClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTweetClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpTweetClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUser.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUser1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUser1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick1.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserClick2.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserXClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpUserXClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWebXs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWebXs.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWebXsClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWebXsClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWinder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWinder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWinderClick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_MpWinderClick.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_PackML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_PackML.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Recipe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Recipe.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Report.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_Report.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_UserGroup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_UserGroup.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_mapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpIcon_mapp.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_ActiveWarning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_ActiveWarning.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Config.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Diagnostics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Diagnostics.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Home.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpImg_Warning.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderCenterless.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderCenterless.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderInactive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderInactive.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderInactiveCenterless.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpInputBorderInactiveCenterless.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_lower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_lower.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_lowerPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_lowerPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric2.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric2Pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numeric2Pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numericPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_numericPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_upper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_upper.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_upperPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_AlphaPad_upperPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_lower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_lower.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_lowerPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_lowerPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric2.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric2Pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numeric2Pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numericPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_numericPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_upper.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_upper.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_upperPressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_EditPad_upperPressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadHor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadHor.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadHor_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadHor_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadVer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadVer.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadVer_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_ListPadVer_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_Numpad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_Numpad.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_Numpad_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpKey_Numpad_pressed.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderDown.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderDown_Orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderDown_Orange.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderLeft.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderSlim.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLabelBorderSlim.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameCenter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameCenter.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameLeft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameLeft.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpListboxFrameRight.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLogoTransparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpLogoTransparent.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeCore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeCore.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeList.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeList.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeList_64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeList_64x64.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTimeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTimeline.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTimeline_64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTimeline_64x64.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTrend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTrend.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTrend_64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOeeTrend_64x64.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOutputBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOutputBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOutputBorderActive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpOutputBorderActive.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_BlueOFF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_BlueOFF.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_BlueON.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_BlueON.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_GreenOFF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_GreenOFF.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_GreenON.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_GreenON.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_Main.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_Main.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_YellowOFF.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_YellowOFF.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_YellowON.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpPackML_YellowON.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpProgressBorder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpProgressBorder.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSafetyButton_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSafetyButton_off.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSafetyButton_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSafetyButton_on.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSlider_BallGray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSlider_BallGray.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSlider_BallGray_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpSlider_BallGray_small.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Add.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Copy.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Cut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Cut.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Delete.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Export.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Generate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Generate.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Import.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Insert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Insert.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_MoveDown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_MoveDown.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_MoveUp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_MoveUp.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Paste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Paste.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_selected.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_unselected_even.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_unselected_even.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_unselected_odd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Point_unselected_odd.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Replace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpTeach_Replace.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_add.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_add_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_add_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_delete.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_delete_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_delete_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_edit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_edit_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUserGroup_edit_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_CriteriaError.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_CriteriaError.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_CriteriaOK.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_CriteriaOK.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Exit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Exit_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Exit_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Export.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Export_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Export_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Import.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Import.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Import_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_Import_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_UserEdit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_UserEdit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_UserGroupEdit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_UserGroupEdit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_add.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_add_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_add_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_clock_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_clock_stop.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_delete.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_delete_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_delete_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_edit.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_edit_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_edit_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_lock.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_lock_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_lock_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_pw_change.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_pw_change.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_pw_change_locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/MpUser_pw_change_locked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/Mpbutton_control.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/Mpbutton_control.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/WhiteBackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/WhiteBackground.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_checked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_checked_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_checked_40.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_small_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/checkbox_small_checked.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/inprogress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/inprogress.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_NewLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_NewLogo.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_NewLogoLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_NewLogoLarge.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappFramework_logo.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappSERVICES_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappSERVICES_logo.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappTechnology_NewLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/VC4/mappFrameworkVisu/Bitmaps/mappTechnology_NewLogo.png
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Trends/TrendData.tdc:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/VC4/mappFrameworkVisu/Vc.dob:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | VCObject.vc
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/Documents/mappFrameworkDE.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Resources/Media/Documents/mappFrameworkDE.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/Documents/mappFrameworkEN.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Resources/Media/Documents/mappFrameworkEN.pdf
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Gifs/InProgress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Gifs/InProgress.gif
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Gifs/InProgressGray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Gifs/InProgressGray.gif
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Icons/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Logos/BnR_Logo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Resources/Media/mappFrameworkSymbols/Logos/BnR_Logo.ico
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Resources/Themes/BuRThemeFlat1/BuRThemeFlat1.theme:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Visualization/Layouts/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Visualization/Pages/AreaContents/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Visualization/Resources/Snippets/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Visualization/Resources/Texts/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/AxisControlWidgetLib/AxisControlWidgetLib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Widgets/AxisControlWidgetLib/AxisControlWidgetLib.png
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/AxisControlWidgetLib/Description.widgetlibrary:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/PackMLLib/Description.widgetlibrary:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/PackMLLib/PackML_support_lib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Widgets/PackMLLib/PackML_support_lib.png
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/RecipeWidgetsLib/Description.widgetlibrary:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/RecipeWidgetsLib/RecipeWidgetsLib.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Logical/mappView/Widgets/RecipeWidgetsLib/RecipeWidgetsLib.png
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/RecipeWidgetsLib/Resources/Media/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Logical/mappView/Widgets/RecipeWidgetsLib/Resources/Texts/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/Hardware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/Simulation/Hardware.jpg
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/AccessAndSecurity/CertificateStore/OwnCertificates/Certificates/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/AccessAndSecurity/CertificateStore/OwnCertificates/PrivateKeys/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/AccessAndSecurity/Firewall/Rules.firewallRules:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/AccessAndSecurity/TransportLayerSecurity/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/Cpu.per:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/IoMap.iom:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/PvMap.vvm:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/UnitSystem/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/VC/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappControl/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappSafety/SafeApplication/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappSafety/SafeCommissioning/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappServices/File/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappView/DemoPage/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/Simulation/PC/mappVision/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/Hardware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/SimulationVC4/Hardware.jpg
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/AccessAndSecurity/CertificateStore/OwnCertificates/Certificates/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/AccessAndSecurity/CertificateStore/OwnCertificates/PrivateKeys/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/AccessAndSecurity/Firewall/Rules.firewallRules:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/AccessAndSecurity/TransportLayerSecurity/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/Cpu.per:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/IoMap.iom:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/PvMap.vvm:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/UnitSystem/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/VC/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappControl/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappSafety/SafeApplication/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappSafety/SafeCommissioning/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappServices/PackML/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappView/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SimulationVC4/PC/mappVision/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/Hardware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/SourceReference/Hardware.jpg
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/AccessAndSecurity/CertificateStore/OwnCertificates/Certificates/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/AccessAndSecurity/CertificateStore/OwnCertificates/PrivateKeys/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/AccessAndSecurity/Firewall/Rules.firewallRules:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/AccessAndSecurity/TransportLayerSecurity/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/Cpu.per:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/IoMap.iom:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/PvMap.vvm:
--------------------------------------------------------------------------------
1 |
2 | VAR_CONFIG
3 |
4 | END_VAR
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/UnitSystem/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/mappControl/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/mappSafety/SafeApplication/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/mappSafety/SafeCommissioning/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/SourceReference/PC/mappVision/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/Hardware.hwl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/UnitTest/Hardware.hwl
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/Hardware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/UnitTest/Hardware.jpg
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/PC_any/AccessAndSecurity/CertificateStore/OwnCertificates/Certificates/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/PC_any/AccessAndSecurity/CertificateStore/OwnCertificates/PrivateKeys/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/PC_any/AccessAndSecurity/Firewall/Rules.firewallRules:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTest/PC_any/AccessAndSecurity/TransportLayerSecurity/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/Hardware.hwl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/UnitTestVC4/Hardware.hwl
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/Hardware.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/archive-br-automation-com/mapp-Framework/ed7e769ee5d93208b69fceb685fba62a10197e4d/mappFramework/Physical/UnitTestVC4/Hardware.jpg
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/PC_any/AccessAndSecurity/CertificateStore/OwnCertificates/Certificates/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/PC_any/AccessAndSecurity/CertificateStore/OwnCertificates/PrivateKeys/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/PC_any/AccessAndSecurity/Firewall/Rules.firewallRules:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/mappFramework/Physical/UnitTestVC4/PC_any/AccessAndSecurity/TransportLayerSecurity/Package.pkg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------