1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
<?xml version="1.0" encoding="utf-8"?>
<root>
  <!-- 
    Microsoft ResX Schema 
    
    Version 2.0
    
    The primary goals of this format is to allow a simple XML format 
    that is mostly human readable. The generation and parsing of the 
    various data types are done through the TypeConverter classes 
    associated with the data types.
    
    Example:
    
    ... ado.net/XML headers & schema ...
    <resheader name="resmimetype">text/microsoft-resx</resheader>
    <resheader name="version">2.0</resheader>
    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
        <value>[base64 mime encoded serialized .NET Framework object]</value>
    </data>
    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
        <comment>This is a comment</comment>
    </data>
                
    There are any number of "resheader" rows that contain simple 
    name/value pairs.
    
    Each data row contains a name, and value. The row also contains a 
    type or mimetype. Type corresponds to a .NET class that support 
    text/value conversion through the TypeConverter architecture. 
    Classes that don't support this are serialized and stored with the 
    mimetype set.
    
    The mimetype is used for serialized objects, and tells the 
    ResXResourceReader how to depersist the object. This is currently not 
    extensible. For a given mimetype the value must be set accordingly:
    
    Note - application/x-microsoft.net.object.binary.base64 is the format 
    that the ResXResourceWriter will generate, however the reader can 
    read any of the formats listed below.
    
    mimetype: application/x-microsoft.net.object.binary.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
            : and then encoded with base64 encoding.
    
    mimetype: application/x-microsoft.net.object.soap.base64
    value   : The object must be serialized with 
            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
            : and then encoded with base64 encoding.
 
    mimetype: application/x-microsoft.net.object.bytearray.base64
    value   : The object must be serialized into a byte array 
            : using a System.ComponentModel.TypeConverter
            : and then encoded with base64 encoding.
    -->
  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
    <xsd:element name="root" msdata:IsDataSet="true">
      <xsd:complexType>
        <xsd:choice maxOccurs="unbounded">
          <xsd:element name="metadata">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" />
              </xsd:sequence>
              <xsd:attribute name="name" use="required" type="xsd:string" />
              <xsd:attribute name="type" type="xsd:string" />
              <xsd:attribute name="mimetype" type="xsd:string" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="assembly">
            <xsd:complexType>
              <xsd:attribute name="alias" type="xsd:string" />
              <xsd:attribute name="name" type="xsd:string" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="data">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
              <xsd:attribute ref="xml:space" />
            </xsd:complexType>
          </xsd:element>
          <xsd:element name="resheader">
            <xsd:complexType>
              <xsd:sequence>
                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
              </xsd:sequence>
              <xsd:attribute name="name" type="xsd:string" use="required" />
            </xsd:complexType>
          </xsd:element>
        </xsd:choice>
      </xsd:complexType>
    </xsd:element>
  </xsd:schema>
  <resheader name="resmimetype">
    <value>text/microsoft-resx</value>
  </resheader>
  <resheader name="version">
    <value>2.0</value>
  </resheader>
  <resheader name="reader">
    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <resheader name="writer">
    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
  </resheader>
  <data name="A1" xml:space="preserve">
    <value>A1</value>
    <comment>A1</comment>
  </data>
  <data name="A2" xml:space="preserve">
    <value>A2</value>
    <comment>A2</comment>
  </data>
  <data name="Ablation" xml:space="preserve">
    <value>Ablation</value>
    <comment>Ablation</comment>
  </data>
  <data name="Ablation_1_MCR" xml:space="preserve">
    <value>Ablation 1 MCR</value>
    <comment>Ablation 1 MCR</comment>
  </data>
  <data name="Ablation_1_Y" xml:space="preserve">
    <value>Ablation 1 Y</value>
    <comment>Ablation 1 Y</comment>
  </data>
  <data name="Ablation_2_MCR" xml:space="preserve">
    <value>Ablation 2 MCR</value>
    <comment>Ablation 2 MCR</comment>
  </data>
  <data name="Ablation_2_Y" xml:space="preserve">
    <value>Ablation 2 Y</value>
    <comment>Ablation 2 Y</comment>
  </data>
  <data name="Ablation_Speed" xml:space="preserve">
    <value>Ablation Speed</value>
    <comment>Ablation Speed</comment>
  </data>
  <data name="Ablation_Stage_1" xml:space="preserve">
    <value>Ablation Stage #1</value>
    <comment>Ablation Stage #1</comment>
  </data>
  <data name="Ablation_Stage_11" xml:space="preserve">
    <value>Ablation Stage 1</value>
    <comment>Ablation Stage 1</comment>
  </data>
  <data name="Ablation_Stage_1_MCR" xml:space="preserve">
    <value>Ablation Stage 1 MCR</value>
    <comment>Ablation Stage 1 MCR</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Ablation_Position" xml:space="preserve">
    <value>Ablation Stage #1 Y Ablation Position</value>
    <comment>Ablation Stage #1 Y Ablation Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Load_Position" xml:space="preserve">
    <value>Ablation Stage #1 Y Load Position</value>
    <comment>Ablation Stage #1 Y Load Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Plasma_Position" xml:space="preserve">
    <value>Ablation Stage #1 Y Plasma Position</value>
    <comment>Ablation Stage #1 Y Plasma Position</comment>
  </data>
  <data name="Ablation_Stage_1_Y_Unload_Position" xml:space="preserve">
    <value>Ablation Stage #1 Y Unload Position</value>
    <comment>Ablation Stage #1 Y Unload Position</comment>
  </data>
  <data name="Ablation_Stage_2" xml:space="preserve">
    <value>Ablation Stage #2</value>
    <comment>Ablation Stage #2</comment>
  </data>
  <data name="Ablation_Stage_21" xml:space="preserve">
    <value>Ablation Stage 2</value>
    <comment>Ablation Stage 2</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Ablation_Position" xml:space="preserve">
    <value>Ablation Stage #2 Y Ablation Position</value>
    <comment>Ablation Stage #2 Y Ablation Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Load_Position" xml:space="preserve">
    <value>Ablation Stage #2 Y Load Position</value>
    <comment>Ablation Stage #2 Y Load Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Plasma_Position" xml:space="preserve">
    <value>Ablation Stage #2 Y Plasma Position</value>
    <comment>Ablation Stage #2 Y Plasma Position</comment>
  </data>
  <data name="Ablation_Stage_2_Y_Unload_Position" xml:space="preserve">
    <value>Ablation Stage #2 Y Unload Position</value>
    <comment>Ablation Stage #2 Y Unload Position</comment>
  </data>
  <data name="Ablation_Stgae_2_MCR" xml:space="preserve">
    <value>Ablation Stgae 2 MCR</value>
    <comment>Ablation Stgae 2 MCR</comment>
  </data>
  <data name="Ablation_Y_A1" xml:space="preserve">
    <value>Ablation Y A1</value>
    <comment>Ablation Y A1</comment>
  </data>
  <data name="Ablation_Y_A2" xml:space="preserve">
    <value>Ablation Y A2</value>
    <comment>Ablation Y A2</comment>
  </data>
  <data name="Ablation_Y_B1" xml:space="preserve">
    <value>Ablation Y B1</value>
    <comment>Ablation Y B1</comment>
  </data>
  <data name="Ablation_Y_B2" xml:space="preserve">
    <value>Ablation Y B2</value>
    <comment>Ablation Y B2</comment>
  </data>
  <data name="ABS" xml:space="preserve">
    <value>ABS</value>
    <comment>ABS</comment>
  </data>
  <data name="Absolute" xml:space="preserve">
    <value>Absolute</value>
    <comment>Absolute</comment>
  </data>
  <data name="After" xml:space="preserve">
    <value>After</value>
    <comment>After</comment>
  </data>
  <data name="AGV" xml:space="preserve">
    <value>AGV</value>
    <comment>AGV</comment>
  </data>
  <data name="Alarm" xml:space="preserve">
    <value>Alarm</value>
    <comment>Alarm</comment>
  </data>
  <data name="Align_Cell_Loading" xml:space="preserve">
    <value>Align Cell Loading</value>
    <comment>Align Cell Loading</comment>
  </data>
  <data name="Align_Mark_1_X" xml:space="preserve">
    <value>Align Mark 1 X</value>
    <comment>Align Mark 1 X</comment>
  </data>
  <data name="Align_Mark_1_Y" xml:space="preserve">
    <value>Align Mark 1 Y</value>
    <comment>Align Mark 1 Y</comment>
  </data>
  <data name="Align_Mark_2_X" xml:space="preserve">
    <value>Align Mark 2 X</value>
    <comment>Align Mark 2 X</comment>
  </data>
  <data name="Align_Mark_2_Y" xml:space="preserve">
    <value>Align Mark 2 Y</value>
    <comment>Align Mark 2 Y</comment>
  </data>
  <data name="Align_PC" xml:space="preserve">
    <value>Align PC</value>
    <comment>Align PC</comment>
  </data>
  <data name="Align_Stage_1_T_0_Deg" xml:space="preserve">
    <value>Align Stage #1 T 0 Deg</value>
    <comment>Align Stage #1 T 0 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_180_Deg" xml:space="preserve">
    <value>Align Stage #1 T 180 Deg</value>
    <comment>Align Stage #1 T 180 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_90_Deg" xml:space="preserve">
    <value>Align Stage #1 T 90 Deg</value>
    <comment>Align Stage #1 T 90 Deg</comment>
  </data>
  <data name="Align_Stage_1_T_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #1 T Cell Loading Position</value>
    <comment>Align Stage #1 T Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_1_T_minus_90_Deg" xml:space="preserve">
    <value>Align Stage #1 T -90 Deg</value>
    <comment>Align Stage #1 T -90 Deg</comment>
  </data>
  <data name="Align_Stage_1_X_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #1 X Cell Loading Position</value>
    <comment>Align Stage #1 X Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_1_Y_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #1 Y Cell Loading Position</value>
    <comment>Align Stage #1 Y Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_T_0_Deg" xml:space="preserve">
    <value>Align Stage #2 T 0 Deg</value>
    <comment>Align Stage #2 T 0 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_180_Deg" xml:space="preserve">
    <value>Align Stage #2 T 180 Deg</value>
    <comment>Align Stage #2 T 180 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_90_Deg" xml:space="preserve">
    <value>Align Stage #2 T 90 Deg</value>
    <comment>Align Stage #2 T 90 Deg</comment>
  </data>
  <data name="Align_Stage_2_T_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #2 T Cell Loading Position</value>
    <comment>Align Stage #2 T Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_T_minus_90_Deg" xml:space="preserve">
    <value>Align Stage #2 T -90 Deg</value>
    <comment>Align Stage #2 T -90 Deg</comment>
  </data>
  <data name="Align_Stage_2_X_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #2 X Cell Loading Position</value>
    <comment>Align Stage #2 X Cell Loading Position</comment>
  </data>
  <data name="Align_Stage_2_Y_Cell_Loading_Position" xml:space="preserve">
    <value>Align Stage #2 Y Cell Loading Position</value>
    <comment>Align Stage #2 Y Cell Loading Position</comment>
  </data>
  <data name="All_Amp_On" xml:space="preserve">
    <value>All Amp On</value>
    <comment>All Amp On</comment>
  </data>
  <data name="All_Error_Reset" xml:space="preserve">
    <value>All Error Reset</value>
    <comment>All Error Reset</comment>
  </data>
  <data name="ALL_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>ALL INITIALIZE PROGRESS</value>
    <comment>ALL INITIALIZE PROGRESS</comment>
  </data>
  <data name="ALL_MOTORS_INITIALIZE" xml:space="preserve">
    <value>ALL MOTORS INITIALIZE</value>
    <comment>ALL MOTORS INITIALIZE</comment>
  </data>
  <data name="AMP_Off" xml:space="preserve">
    <value>AMP Off</value>
    <comment>AMP Off</comment>
  </data>
  <data name="AMP_On" xml:space="preserve">
    <value>AMP On</value>
    <comment>AMP On</comment>
  </data>
  <data name="ANALOG" xml:space="preserve">
    <value>ANLAOG</value>
    <comment>ANLAOG</comment>
  </data>
  <data name="AOI_0" xml:space="preserve">
    <value>AOI 0</value>
    <comment>AOI 0</comment>
  </data>
  <data name="AOI_180" xml:space="preserve">
    <value>AOI 180</value>
    <comment>AOI 180</comment>
  </data>
  <data name="AOI_90" xml:space="preserve">
    <value>AOI 90</value>
    <comment>AOI 90</comment>
  </data>
  <data name="AOI_Left" xml:space="preserve">
    <value>AOI Left</value>
    <comment>AOI Left</comment>
  </data>
  <data name="AOI_Measurement" xml:space="preserve">
    <value>AOI Measurement</value>
    <comment>AOI Measurement</comment>
  </data>
  <data name="AOI_minus_90_Deg" xml:space="preserve">
    <value>AOI -90 Deg</value>
    <comment>AOI -90 Deg</comment>
  </data>
  <data name="AOI_PC" xml:space="preserve">
    <value>AOI PC</value>
    <comment>AOI PC</comment>
  </data>
  <data name="AOI_Pick_Offset" xml:space="preserve">
    <value>AOI Pick Offset</value>
    <comment>AOI Pick Offset</comment>
  </data>
  <data name="AOI_Right" xml:space="preserve">
    <value>AOI Right</value>
    <comment>AOI Right</comment>
  </data>
  <data name="AOI_Stage" xml:space="preserve">
    <value>AOI Stage</value>
    <comment>AOI Stage</comment>
  </data>
  <data name="AOI_Stage_1_T_0_Deg" xml:space="preserve">
    <value>AOI Stage #1 T 0 Deg</value>
    <comment>AOI Stage #1 T 0 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_180_Deg" xml:space="preserve">
    <value>AOI Stage #1 T 180 Deg</value>
    <comment>AOI Stage #1 T 180 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_90_Deg" xml:space="preserve">
    <value>AOI Stage #1 T 90 Deg</value>
    <comment>AOI Stage #1 T 90 Deg</comment>
  </data>
  <data name="AOI_Stage_1_T_minus_90_Deg" xml:space="preserve">
    <value>AOI Stage #1 T -90 Deg</value>
    <comment>AOI Stage #1 T -90 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_0_Deg" xml:space="preserve">
    <value>AOI Stage #2 T 0 Deg</value>
    <comment>AOI Stage #2 T 0 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_180_Deg" xml:space="preserve">
    <value>AOI Stage #2 T 180 Deg</value>
    <comment>AOI Stage #2 T 180 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_90_Deg" xml:space="preserve">
    <value>AOI Stage #2 T 90 Deg</value>
    <comment>AOI Stage #2 T 90 Deg</comment>
  </data>
  <data name="AOI_Stage_2_T_minus_90_Deg" xml:space="preserve">
    <value>AOI Stage #2 T -90 Deg</value>
    <comment>AOI Stage #2 T -90 Deg</comment>
  </data>
  <data name="Apply" xml:space="preserve">
    <value>Apply</value>
    <comment>Apply</comment>
  </data>
  <data name="AXIS" xml:space="preserve">
    <value>AXIS</value>
    <comment>AXIS</comment>
  </data>
  <data name="Axis_Control" xml:space="preserve">
    <value>Axis Control</value>
    <comment>Axis Control</comment>
  </data>
  <data name="B1" xml:space="preserve">
    <value>B1</value>
    <comment>B1</comment>
  </data>
  <data name="B2" xml:space="preserve">
    <value>B2</value>
    <comment>B2</comment>
  </data>
  <data name="BCR_Retry_Count" xml:space="preserve">
    <value>BCR Retry Count</value>
    <comment>BCR Retry Count</comment>
  </data>
  <data name="BCR_X" xml:space="preserve">
    <value>BCR X</value>
    <comment>BCR X</comment>
  </data>
  <data name="BCR_Y" xml:space="preserve">
    <value>BCR Y</value>
    <comment>BCR Y</comment>
  </data>
  <data name="Before" xml:space="preserve">
    <value>Before</value>
    <comment>Before</comment>
  </data>
  <data name="Blue" xml:space="preserve">
    <value>Blue</value>
    <comment>Blue</comment>
  </data>
  <data name="Board_ID" xml:space="preserve">
    <value>Board ID</value>
    <comment>Board ID</comment>
  </data>
  <data name="Board_init" xml:space="preserve">
    <value>Board init</value>
    <comment>Board init</comment>
  </data>
  <data name="BOARD_STATUS" xml:space="preserve">
    <value>BOARD STATUS</value>
    <comment>BOARD STATUS</comment>
  </data>
  <data name="Board_Status1" xml:space="preserve">
    <value>Board Status</value>
    <comment>Board Status</comment>
  </data>
  <data name="BUTTON" xml:space="preserve">
    <value>BUTTON</value>
    <comment>BUTTON</comment>
  </data>
  <data name="Cancel" xml:space="preserve">
    <value>Cancel</value>
    <comment>Cancel</comment>
  </data>
  <data name="CDA_Plasma_X_A1_Position" xml:space="preserve">
    <value>CDA Plasma X A1 Position</value>
    <comment>CDA Plasma X A1 Position</comment>
  </data>
  <data name="CDA_Plasma_X_A2_Position" xml:space="preserve">
    <value>CDA Plasma X A2 Position</value>
    <comment>CDA Plasma X A2 Position</comment>
  </data>
  <data name="CDA_Plasma_X_B1_Position" xml:space="preserve">
    <value>CDA Plasma X B1 Position</value>
    <comment>CDA Plasma X B1 Position</comment>
  </data>
  <data name="CDA_Plasma_X_B2_Position" xml:space="preserve">
    <value>CDA Plasma X B2 Position</value>
    <comment>CDA Plasma X B2 Position</comment>
  </data>
  <data name="CELL_ID_BCR" xml:space="preserve">
    <value>CELL ID BCR</value>
    <comment>CELL ID BCR</comment>
  </data>
  <data name="Cell_Pitch_X" xml:space="preserve">
    <value>Cell Pitch X</value>
    <comment>Cell Pitch X</comment>
  </data>
  <data name="Cell_Pitch_Y" xml:space="preserve">
    <value>Cell Pitch Y</value>
    <comment>Cell Pitch Y</comment>
  </data>
  <data name="CIM_Off_Line" xml:space="preserve">
    <value>CIM Off Line</value>
    <comment>CIM Off Line</comment>
  </data>
  <data name="CIM_On_Line" xml:space="preserve">
    <value>CIM On Line</value>
    <comment>CIM On Line</comment>
  </data>
  <data name="Clamp_Retry_Count" xml:space="preserve">
    <value>Clamp Retry Count</value>
    <comment>Clamp Retry Count</comment>
  </data>
  <data name="Column" xml:space="preserve">
    <value>Column</value>
    <comment>Column</comment>
  </data>
  <data name="Control" xml:space="preserve">
    <value>Control</value>
    <comment>Control</comment>
  </data>
  <data name="Copy" xml:space="preserve">
    <value>Copy</value>
    <comment>Copy</comment>
  </data>
  <data name="CREATE" xml:space="preserve">
    <value>CREATE</value>
    <comment>CREATE</comment>
  </data>
  <data name="Create_Time" xml:space="preserve">
    <value>Create Time</value>
    <comment>Create Time</comment>
  </data>
  <data name="Create_User_Info" xml:space="preserve">
    <value>Create User Inof</value>
    <comment>Create User Inof</comment>
  </data>
  <data name="CTB_File_Path" xml:space="preserve">
    <value>CTB File Path</value>
    <comment>CTB File Path</comment>
  </data>
  <data name="Current_Position" xml:space="preserve">
    <value>Current Position</value>
    <comment>Current Position</comment>
  </data>
  <data name="Current_Speed" xml:space="preserve">
    <value>Current Speed</value>
    <comment>Current Speed</comment>
  </data>
  <data name="Cylinder_Timeout_sec" xml:space="preserve">
    <value>Cylinder Timeout(s)</value>
    <comment>Cylinder Timeout(s)</comment>
  </data>
  <data name="Delay_Parameter" xml:space="preserve">
    <value>Delay Parameter</value>
    <comment>Delay Parameter</comment>
  </data>
  <data name="Delete" xml:space="preserve">
    <value>Delete</value>
    <comment>Delete</comment>
  </data>
  <data name="DESCRIPTION" xml:space="preserve">
    <value>DESCRIPTION</value>
    <comment>DESCRIPTION</comment>
  </data>
  <data name="Device_ID" xml:space="preserve">
    <value>Device ID</value>
    <comment>Device ID</comment>
  </data>
  <data name="Distance" xml:space="preserve">
    <value>Distance</value>
    <comment>Distance</comment>
  </data>
  <data name="Door_Open" xml:space="preserve">
    <value>Door Open</value>
    <comment>Door Open</comment>
  </data>
  <data name="Draw_1" xml:space="preserve">
    <value>Draw 1</value>
    <comment>Draw 1</comment>
  </data>
  <data name="Draw_2" xml:space="preserve">
    <value>Draw 2</value>
    <comment>Draw 2</comment>
  </data>
  <data name="Draw_3" xml:space="preserve">
    <value>Draw 3</value>
    <comment>Draw 3</comment>
  </data>
  <data name="Draw_4" xml:space="preserve">
    <value>Draw 4</value>
    <comment>Draw 4</comment>
  </data>
  <data name="Draw_Position_Data" xml:space="preserve">
    <value>Draw Position Data</value>
    <comment>Draw Position Data</comment>
  </data>
  <data name="Dust_Collector" xml:space="preserve">
    <value>Dust Collector</value>
    <comment>Dust Collector</comment>
  </data>
  <data name="Dust_Collector_Parameter" xml:space="preserve">
    <value>Dust Collector Parameter</value>
    <comment>Dust Collector Parameter</comment>
  </data>
  <data name="Empty_Port" xml:space="preserve">
    <value>Empty Port</value>
    <comment>Empty Port</comment>
  </data>
  <data name="END" xml:space="preserve">
    <value>END</value>
    <comment>END</comment>
  </data>
  <data name="END1" xml:space="preserve">
    <value>END</value>
    <comment>END</comment>
  </data>
  <data name="End_X" xml:space="preserve">
    <value>End X</value>
    <comment>End X</comment>
  </data>
  <data name="End_Y" xml:space="preserve">
    <value>End Y</value>
    <comment>End Y</comment>
  </data>
  <data name="Equipment_Info" xml:space="preserve">
    <value>Equipment Info</value>
    <comment>Equipment Info</comment>
  </data>
  <data name="Equip_Mode" xml:space="preserve">
    <value>Equip Mode</value>
    <comment>Equip Mode</comment>
  </data>
  <data name="Error_ID" xml:space="preserve">
    <value>Error ID</value>
    <comment>Error ID</comment>
  </data>
  <data name="Error_info_0" xml:space="preserve">
    <value>Error info 0</value>
    <comment>Error info 0</comment>
  </data>
  <data name="Error_info_1" xml:space="preserve">
    <value>Error info 1</value>
    <comment>Error info 1</comment>
  </data>
  <data name="Error_Reset" xml:space="preserve">
    <value>Error Reset</value>
    <comment>Error Reset</comment>
  </data>
  <data name="Error_Stop" xml:space="preserve">
    <value>Error Stop</value>
    <comment>Error Stop</comment>
  </data>
  <data name="Film" xml:space="preserve">
    <value>Film</value>
    <comment>Film</comment>
  </data>
  <data name="Film_Judge" xml:space="preserve">
    <value>Film Judge</value>
    <comment>Film Judge</comment>
  </data>
  <data name="Film_Judge_Left" xml:space="preserve">
    <value>Film Judge Left</value>
    <comment>Film Judge Left</comment>
  </data>
  <data name="FILM_JUDGE_MODE" xml:space="preserve">
    <value>FILM JUDGE MODE</value>
    <comment>FILM JUDGE MODE</comment>
  </data>
  <data name="Film_Judge_Position" xml:space="preserve">
    <value>Film Judge Position</value>
    <comment>Film Judge Position</comment>
  </data>
  <data name="Film_Judge_Right" xml:space="preserve">
    <value>Film Judge Right</value>
    <comment>Film Judge Right</comment>
  </data>
  <data name="Film_Judge_Speed" xml:space="preserve">
    <value>Film Judge Speed</value>
    <comment>Film Judge Speed</comment>
  </data>
  <data name="FINE_ALIGN" xml:space="preserve">
    <value>FINE ALIGN</value>
    <comment>FINE ALIGN</comment>
  </data>
  <data name="Fine_Align_Speed" xml:space="preserve">
    <value>Fine Align Speed</value>
    <comment>Fine Align Speed</comment>
  </data>
  <data name="Fine_Align_Stage_1" xml:space="preserve">
    <value>Fine Align Stage 1</value>
    <comment>Fine Align Stage 1</comment>
  </data>
  <data name="Fine_Align_Stage_2" xml:space="preserve">
    <value>Fine Align Stage 2</value>
    <comment>Fine Align Stage 2</comment>
  </data>
  <data name="Fine_Align_X" xml:space="preserve">
    <value>Fine Align X</value>
    <comment>Fine Align X</comment>
  </data>
  <data name="Frequency" xml:space="preserve">
    <value>Frequency</value>
    <comment>Frequency</comment>
  </data>
  <data name="Get_Position" xml:space="preserve">
    <value>Get Position</value>
    <comment>Get Position</comment>
  </data>
  <data name="Green" xml:space="preserve">
    <value>Green</value>
    <comment>Green</comment>
  </data>
  <data name="Hatch_Data" xml:space="preserve">
    <value>Hatch Data</value>
    <comment>Hatch Data</comment>
  </data>
  <data name="Home" xml:space="preserve">
    <value>Home</value>
    <comment>Home</comment>
  </data>
  <data name="ID" xml:space="preserve">
    <value>ID</value>
    <comment>ID</comment>
  </data>
  <data name="Info" xml:space="preserve">
    <value>Info</value>
    <comment>Info</comment>
  </data>
  <data name="INITIALIZE" xml:space="preserve">
    <value>INITIALIZE</value>
    <comment>INITIALIZE</comment>
  </data>
  <data name="Inposition_Parameter" xml:space="preserve">
    <value>Inposition Parameter</value>
    <comment>Inposition Parameter</comment>
  </data>
  <data name="Inposition_Range_mm" xml:space="preserve">
    <value>Inposition Range(mm)</value>
    <comment>Inposition Range(mm)</comment>
  </data>
  <data name="INTERLOCK" xml:space="preserve">
    <value>INTERLOCK</value>
    <comment>INTERLOCK</comment>
  </data>
  <data name="In_Port" xml:space="preserve">
    <value>In Port</value>
    <comment>In Port</comment>
  </data>
  <data name="In_Port_To_Empty" xml:space="preserve">
    <value>In Port -&gt; Empty</value>
    <comment>In Port -&gt; Empty</comment>
  </data>
  <data name="In_Position" xml:space="preserve">
    <value>In Position</value>
    <comment>In Position</comment>
  </data>
  <data name="IO" xml:space="preserve">
    <value>IO</value>
    <comment>IO</comment>
  </data>
  <data name="Jump_Delay" xml:space="preserve">
    <value>Jump Delay</value>
    <comment>Jump Delay</comment>
  </data>
  <data name="Jump_Speed" xml:space="preserve">
    <value>Jump Speed</value>
    <comment>Jump Speed</comment>
  </data>
  <data name="Key_Switch" xml:space="preserve">
    <value>Key Switch</value>
    <comment>Key Switch</comment>
  </data>
  <data name="LASER" xml:space="preserve">
    <value>LASER</value>
    <comment>LASER</comment>
  </data>
  <data name="Laser_Off_Delay" xml:space="preserve">
    <value>Laser Off Delay</value>
    <comment>Laser Off Delay</comment>
  </data>
  <data name="Laser_On_Delay" xml:space="preserve">
    <value>Laser On Delay</value>
    <comment>Laser On Delay</comment>
  </data>
  <data name="LD_BCR" xml:space="preserve">
    <value>LD BCR</value>
    <comment>LD BCR</comment>
  </data>
  <data name="LD_Empty_Coount" xml:space="preserve">
    <value>LD Empty Coount</value>
    <comment>LD Empty Coount</comment>
  </data>
  <data name="LD_Empty_Current_Count" xml:space="preserve">
    <value>LD Empty Current Count</value>
    <comment>LD Empty Current Count</comment>
  </data>
  <data name="LD_Handler_1" xml:space="preserve">
    <value>LD Handler 1</value>
    <comment>LD Handler 1</comment>
  </data>
  <data name="LD_Handler_1_X" xml:space="preserve">
    <value>LD Handler 1 X</value>
    <comment>LD Handler 1 X</comment>
  </data>
  <data name="LD_Handler_1_X_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD Handler 1 X Pre Align Stage Position</value>
    <comment>LD Handler 1 X Pre Align Stage Position</comment>
  </data>
  <data name="LD_Handler_1_X_Reverse_Stage_Position" xml:space="preserve">
    <value>LD Handler 1 X Reverse Stage Position</value>
    <comment>LD Handler 1 X Reverse Stage Position</comment>
  </data>
  <data name="LD_Handler_1_X_Stay_Position" xml:space="preserve">
    <value>LD Handler 1 X Stay Position</value>
    <comment>LD Handler 1 X Stay Position</comment>
  </data>
  <data name="LD_Handler_1_Y" xml:space="preserve">
    <value>LD Handler 1 Y</value>
    <comment>LD Handler 1 Y</comment>
  </data>
  <data name="LD_Handler_1_Y_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD Handler 1 Y Pre Align Stage Position</value>
    <comment>LD Handler 1 Y Pre Align Stage Position</comment>
  </data>
  <data name="LD_Handler_1_Y_Reverse_Stage_Position" xml:space="preserve">
    <value>LD Handler 1 Y Reverse Stage Position</value>
    <comment>LD Handler 1 Y Reverse Stage Position</comment>
  </data>
  <data name="LD_Handler_1_Y_Stay_Position" xml:space="preserve">
    <value>LD Handler 1 Y Stay Position</value>
    <comment>LD Handler 1 Y Stay Position</comment>
  </data>
  <data name="LD_In_Count" xml:space="preserve">
    <value>LD In Count</value>
    <comment>LD In Count</comment>
  </data>
  <data name="LD_In_Current_Count" xml:space="preserve">
    <value>LD In Current Count</value>
    <comment>LD In Current Count</comment>
  </data>
  <data name="LD_Reverse" xml:space="preserve">
    <value>LD Reverse</value>
    <comment>LD Reverse</comment>
  </data>
  <data name="LD_Reverse_Unit1_0_Deg_Position" xml:space="preserve">
    <value>LD Reverse Unit#1 0 Deg Position</value>
    <comment>LD Reverse Unit#1 0 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_180_Deg_Position" xml:space="preserve">
    <value>LD Reverse Unit#1 180 Deg Position</value>
    <comment>LD Reverse Unit#1 180 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_Down_Position" xml:space="preserve">
    <value>LD Reverse Unit#1 Down Position</value>
    <comment>LD Reverse Unit#1 Down Position</comment>
  </data>
  <data name="LD_Reverse_Unit1_Up_Position" xml:space="preserve">
    <value>LD Reverse Unit#1 Up Position</value>
    <comment>LD Reverse Unit#1 Up Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_0_Deg_Position" xml:space="preserve">
    <value>LD Reverse Unit#2 0 Deg Position</value>
    <comment>LD Reverse Unit#2 0 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_180_Deg_Position" xml:space="preserve">
    <value>LD Reverse Unit#2 180 Deg Position</value>
    <comment>LD Reverse Unit#2 180 Deg Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_Down_Position" xml:space="preserve">
    <value>LD Reverse Unit#2 Down Position</value>
    <comment>LD Reverse Unit#2 Down Position</comment>
  </data>
  <data name="LD_Reverse_Unit2_Up_Position" xml:space="preserve">
    <value>LD Reverse Unit#2 Up Position</value>
    <comment>LD Reverse Unit#2 Up Position</comment>
  </data>
  <data name="LD_STACKER" xml:space="preserve">
    <value>LD STACKER</value>
    <comment>LD STACKER</comment>
  </data>
  <data name="LD_Tray_Empty" xml:space="preserve">
    <value>LD Tray Empty</value>
    <comment>LD Tray Empty</comment>
  </data>
  <data name="LD_Tray_Empty_Z_Process_Position" xml:space="preserve">
    <value>LD Tray Empty Z Process Position</value>
    <comment>LD Tray Empty Z Process Position</comment>
  </data>
  <data name="LD_Tray_Empty_Z_Wait_Position" xml:space="preserve">
    <value>LD Tray Empty Z Wait Position</value>
    <comment>LD Tray Empty Z Wait Position</comment>
  </data>
  <data name="LD_Tray_In" xml:space="preserve">
    <value>LD Tray In</value>
    <comment>LD Tray In</comment>
  </data>
  <data name="LD_Tray_In_Z_Process_Position" xml:space="preserve">
    <value>LD Tray In Z Process Position</value>
    <comment>LD Tray In Z Process Position</comment>
  </data>
  <data name="LD_Tray_In_Z_Wait_Position" xml:space="preserve">
    <value>LD Tray In Z Wait Position</value>
    <comment>LD Tray In Z Wait Position</comment>
  </data>
  <data name="LD_Tray_Process" xml:space="preserve">
    <value>LD Tray Process</value>
    <comment>LD Tray Process</comment>
  </data>
  <data name="LD_Tray_TR_X_Empty_Position" xml:space="preserve">
    <value>LD Tray TR X Empty Position</value>
    <comment>LD Tray TR X Empty Position</comment>
  </data>
  <data name="LD_Tray_TR_X_In_Position" xml:space="preserve">
    <value>LD Tray TR X In Position</value>
    <comment>LD Tray TR X In Position</comment>
  </data>
  <data name="LD_Tray_Wait" xml:space="preserve">
    <value>LD Tray Wait</value>
    <comment>LD Tray Wait</comment>
  </data>
  <data name="LD_Tray_Wait1" xml:space="preserve">
    <value>LD Tray Wait</value>
    <comment>LD Tray Wait</comment>
  </data>
  <data name="LD_TR_2_X_Ablation_Stage_1_Position" xml:space="preserve">
    <value>LD TR 2 X Ablation Stage #1 Position</value>
    <comment>LD TR 2 X Ablation Stage #1 Position</comment>
  </data>
  <data name="LD_TR_2_X_Ablation_Stage_2_Position" xml:space="preserve">
    <value>LD TR 2 X Ablation Stage #2 Position</value>
    <comment>LD TR 2 X Ablation Stage #2 Position</comment>
  </data>
  <data name="LD_TR_2_X_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD TR 2 X Pre Align Stage Position</value>
    <comment>LD TR 2 X Pre Align Stage Position</comment>
  </data>
  <data name="LD_TR_2_X_Stay_Position" xml:space="preserve">
    <value>LD TR 2 X Stay Position</value>
    <comment>LD TR 2 X Stay Position</comment>
  </data>
  <data name="LD_TR_2_Y_Ablation_Stage_1_Position" xml:space="preserve">
    <value>LD TR 2 Y Ablation Stage #1 Position</value>
    <comment>LD TR 2 Y Ablation Stage #1 Position</comment>
  </data>
  <data name="LD_TR_2_Y_Ablation_Stage_2_Position" xml:space="preserve">
    <value>LD TR 2 Y Ablation Stage #2 Position</value>
    <comment>LD TR 2 Y Ablation Stage #2 Position</comment>
  </data>
  <data name="LD_TR_2_Y_Pre_Align_Stage_Position" xml:space="preserve">
    <value>LD TR 2 Y Pre Align Stage Position</value>
    <comment>LD TR 2 Y Pre Align Stage Position</comment>
  </data>
  <data name="LD_TR_2_Y_Stay_Position" xml:space="preserve">
    <value>LD TR 2 Y Stay Position</value>
    <comment>LD TR 2 Y Stay Position</comment>
  </data>
  <data name="Level" xml:space="preserve">
    <value>Level</value>
    <comment>Level</comment>
  </data>
  <data name="Line" xml:space="preserve">
    <value>Line</value>
    <comment>Line</comment>
  </data>
  <data name="Load" xml:space="preserve">
    <value>Load</value>
    <comment>Load</comment>
  </data>
  <data name="Loader" xml:space="preserve">
    <value>Loader</value>
    <comment>Loader</comment>
  </data>
  <data name="LOADER_MOTORS" xml:space="preserve">
    <value>LOADER MOTORS</value>
    <comment>LOADER MOTORS</comment>
  </data>
  <data name="LOADER_MOTORS_INITIALIZE" xml:space="preserve">
    <value>LOADER MOTORS INITIALIZE</value>
    <comment>LOADER MOTORS INITIALIZE</comment>
  </data>
  <data name="LOADER_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>LOADER MOTORS INITIALIZE PROGRESS</value>
    <comment>LOADER MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="LOADER_REVERSE" xml:space="preserve">
    <value>LOADER REVERSE</value>
    <comment>LOADER REVERSE</comment>
  </data>
  <data name="Loader_To_Ablation_Stage" xml:space="preserve">
    <value>Loader -&gt; Ablation Stage</value>
    <comment>Loader -&gt; Ablation Stage</comment>
  </data>
  <data name="LOAD_HANDLER_1" xml:space="preserve">
    <value>LOAD HANDLER 1</value>
    <comment>LOAD HANDLER 1</comment>
  </data>
  <data name="LOAD_HANDLER_2" xml:space="preserve">
    <value>LOAD HANDLER 2</value>
    <comment>LOAD HANDLER 2</comment>
  </data>
  <data name="LOAD_TRAY_LIFT_EMPTY" xml:space="preserve">
    <value>LOAD TRAY LIFT EMPTY</value>
    <comment>LOAD TRAY LIFT EMPTY</comment>
  </data>
  <data name="LOAD_TRAY_LIFT_IN" xml:space="preserve">
    <value>LOAD TRAY LIFT IN</value>
    <comment>LOAD TRAY LIFT IN</comment>
  </data>
  <data name="LOAD_TRAY_TR" xml:space="preserve">
    <value>LOAD TRAY TR</value>
    <comment>LOAD TRAY TR</comment>
  </data>
  <data name="LOG" xml:space="preserve">
    <value>LOG</value>
    <comment>LOG</comment>
  </data>
  <data name="Login_Info" xml:space="preserve">
    <value>Login Info</value>
    <comment>Login Info</comment>
  </data>
  <data name="Log_Out" xml:space="preserve">
    <value>Log Out</value>
    <comment>Log Out</comment>
  </data>
  <data name="Main" xml:space="preserve">
    <value>Main</value>
    <comment>Main</comment>
  </data>
  <data name="Maintenance" xml:space="preserve">
    <value>Maintenance</value>
    <comment>Maintenance</comment>
  </data>
  <data name="Main_Recipe" xml:space="preserve">
    <value>Main Recipe</value>
    <comment>Main Recipe</comment>
  </data>
  <data name="Mark_Delay" xml:space="preserve">
    <value>Mark Delay</value>
    <comment>Mark Delay</comment>
  </data>
  <data name="Mark_Speed" xml:space="preserve">
    <value>Mark Speed</value>
    <comment>Mark Speed</comment>
  </data>
  <data name="Mass_Product_Code" xml:space="preserve">
    <value>Mass Product Code</value>
    <comment>Mass Product Code</comment>
  </data>
  <data name="MCR_X" xml:space="preserve">
    <value>MCR X</value>
    <comment>MCR X</comment>
  </data>
  <data name="MCR_Y" xml:space="preserve">
    <value>MCR Y</value>
    <comment>MCR Y</comment>
  </data>
  <data name="MEASUREMENT" xml:space="preserve">
    <value>MEASUREMENT</value>
    <comment>MEASUREMENT</comment>
  </data>
  <data name="Measurement_Speed" xml:space="preserve">
    <value>Measurement Speed</value>
    <comment>Measurement Speed</comment>
  </data>
  <data name="Module_Model_ID" xml:space="preserve">
    <value>Module Model ID</value>
    <comment>Module Model ID</comment>
  </data>
  <data name="Motor_Axis" xml:space="preserve">
    <value>Motor Axis</value>
    <comment>Motor Axis</comment>
  </data>
  <data name="Motor_Board_Status" xml:space="preserve">
    <value>Motor Board Status</value>
    <comment>Motor Board Status</comment>
  </data>
  <data name="Motor_Control" xml:space="preserve">
    <value>Motor Control</value>
    <comment>Motor Control</comment>
  </data>
  <data name="Motor_Select" xml:space="preserve">
    <value>Motor Select</value>
    <comment>Motor Select</comment>
  </data>
  <data name="MOTOR_STATUS" xml:space="preserve">
    <value>MOTOR STATUS</value>
    <comment>MOTOR STATUS</comment>
  </data>
  <data name="MOTOR_STOP" xml:space="preserve">
    <value>MOTOR STOP</value>
    <comment>MOTOR STOP</comment>
  </data>
  <data name="Move_Position" xml:space="preserve">
    <value>Move Position</value>
    <comment>Move Position</comment>
  </data>
  <data name="Move_Speed" xml:space="preserve">
    <value>Move Speed</value>
    <comment>Move Speed</comment>
  </data>
  <data name="Move_Stop" xml:space="preserve">
    <value>Move Stop</value>
    <comment>Move Stop</comment>
  </data>
  <data name="Name" xml:space="preserve">
    <value>Name</value>
    <comment>Name</comment>
  </data>
  <data name="Negative_Limit" xml:space="preserve">
    <value>Negative Limit</value>
    <comment>Negative Limit</comment>
  </data>
  <data name="New" xml:space="preserve">
    <value>New</value>
    <comment>New</comment>
  </data>
  <data name="No" xml:space="preserve">
    <value>No.</value>
    <comment>No.</comment>
  </data>
  <data name="NOT_USE" xml:space="preserve">
    <value>NOT USE</value>
    <comment>NOT USE</comment>
  </data>
  <data name="NUM" xml:space="preserve">
    <value>NUM</value>
    <comment>NUM</comment>
  </data>
  <data name="OPEN_FOLDER" xml:space="preserve">
    <value>OPEN FOLDER</value>
    <comment>OPEN FOLDER</comment>
  </data>
  <data name="Panel_Data" xml:space="preserve">
    <value>Panel Data</value>
    <comment>Panel Data</comment>
  </data>
  <data name="Panel_Info_Recipe" xml:space="preserve">
    <value>Panel Info Recipe</value>
    <comment>Panel Info Recipe</comment>
  </data>
  <data name="Parameter" xml:space="preserve">
    <value>Parameter</value>
    <comment>Parameter</comment>
  </data>
  <data name="PASSWORD" xml:space="preserve">
    <value>PASSWORD</value>
    <comment>PASSWORD</comment>
  </data>
  <data name="Pause" xml:space="preserve">
    <value>Pause</value>
    <comment>Pause</comment>
  </data>
  <data name="Person_in_Charge_Code" xml:space="preserve">
    <value>Person in Charge Code</value>
    <comment>Person in Charge Code</comment>
  </data>
  <data name="Pick" xml:space="preserve">
    <value>Pick</value>
    <comment>Pick</comment>
  </data>
  <data name="Plasma" xml:space="preserve">
    <value>Plasma</value>
    <comment>Plasma</comment>
  </data>
  <data name="Plasma_Position_Data" xml:space="preserve">
    <value>Plasma Position Data</value>
    <comment>Plasma Position Data</comment>
  </data>
  <data name="Plasma_Speed" xml:space="preserve">
    <value>Plasma Speed</value>
    <comment>Plasma Speed</comment>
  </data>
  <data name="PLASMA_X" xml:space="preserve">
    <value>PLASMA X</value>
    <comment>PLASMA X</comment>
  </data>
  <data name="Plasma_X_A1" xml:space="preserve">
    <value>Plasma X A1</value>
    <comment>Plasma X A1</comment>
  </data>
  <data name="Plasma_X_A2" xml:space="preserve">
    <value>Plasma X A2</value>
    <comment>Plasma X A2</comment>
  </data>
  <data name="Plasma_X_B1" xml:space="preserve">
    <value>Plasma X B1</value>
    <comment>Plasma X B1</comment>
  </data>
  <data name="Plasma_X_B2" xml:space="preserve">
    <value>Plasma X B2</value>
    <comment>Plasma X B2</comment>
  </data>
  <data name="POSITION" xml:space="preserve">
    <value>POSITION</value>
    <comment>POSITION</comment>
  </data>
  <data name="POSITION_NAME" xml:space="preserve">
    <value>POSITION NAME</value>
    <comment>POSITION NAME</comment>
  </data>
  <data name="POSITION_PARAMETER" xml:space="preserve">
    <value>POSITION PARAMETER</value>
    <comment>POSITION PARAMETER</comment>
  </data>
  <data name="POSITION_SETTING" xml:space="preserve">
    <value>POSITION SETTING</value>
    <comment>POSITION SETTING</comment>
  </data>
  <data name="Positive_Limit" xml:space="preserve">
    <value>Positive Limit</value>
    <comment>Positive Limit</comment>
  </data>
  <data name="Pos_X" xml:space="preserve">
    <value>Pos X</value>
    <comment>Pos X</comment>
  </data>
  <data name="Pos_Y" xml:space="preserve">
    <value>Pos Y</value>
    <comment>Pos Y</comment>
  </data>
  <data name="Power" xml:space="preserve">
    <value>Power</value>
    <comment>Power</comment>
  </data>
  <data name="Power_Meter" xml:space="preserve">
    <value>Power Meter</value>
    <comment>Power Meter</comment>
  </data>
  <data name="PRE_ALIGN" xml:space="preserve">
    <value>PRE ALIGN</value>
    <comment>PRE ALIGN</comment>
  </data>
  <data name="Pre_Align_Left" xml:space="preserve">
    <value>Pre Align Left</value>
    <comment>Pre Align Left</comment>
  </data>
  <data name="Pre_Align_Offset" xml:space="preserve">
    <value>Pre Align Offset</value>
    <comment>Pre Align Offset</comment>
  </data>
  <data name="Pre_Align_Pick_Offset" xml:space="preserve">
    <value>Pre Align Pick Offset</value>
    <comment>Pre Align Pick Offset</comment>
  </data>
  <data name="Pre_Align_Position" xml:space="preserve">
    <value>Pre Align Position</value>
    <comment>Pre Align Position</comment>
  </data>
  <data name="Pre_Align_Right" xml:space="preserve">
    <value>Pre Align Right</value>
    <comment>Pre Align Right</comment>
  </data>
  <data name="Pre_Align_Speed" xml:space="preserve">
    <value>Pre Align Speed</value>
    <comment>Pre Align Speed</comment>
  </data>
  <data name="Pre_Align_Stage" xml:space="preserve">
    <value>Pre Align Stage</value>
    <comment>Pre Align Stage</comment>
  </data>
  <data name="Pre_Align_Stage_1" xml:space="preserve">
    <value>Pre Align Stage 1</value>
    <comment>Pre Align Stage 1</comment>
  </data>
  <data name="Pre_Align_Stage_2" xml:space="preserve">
    <value>Pre Align Stage 2</value>
    <comment>Pre Align Stage 2</comment>
  </data>
  <data name="Process" xml:space="preserve">
    <value>Process</value>
    <comment>Process</comment>
  </data>
  <data name="Process_Info_Recipe" xml:space="preserve">
    <value>Process Info Recipe</value>
    <comment>Process Info Recipe</comment>
  </data>
  <data name="PROCESS_MOTORS" xml:space="preserve">
    <value>PROCESS MOTORS</value>
    <comment>PROCESS MOTORS</comment>
  </data>
  <data name="PROCESS_MOTORS_INITIALIZE" xml:space="preserve">
    <value>PROCESS MOTORS INITIALIZE</value>
    <comment>PROCESS MOTORS INITIALIZE</comment>
  </data>
  <data name="PROCESS_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>PROCESS MOTORS INITIALIZE PROGRESS</value>
    <comment>PROCESS MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="Process_Number" xml:space="preserve">
    <value>Process Number</value>
    <comment>Process Number</comment>
  </data>
  <data name="Program_Name" xml:space="preserve">
    <value>Program Name</value>
    <comment>Program Name</comment>
  </data>
  <data name="Program_Version" xml:space="preserve">
    <value>Program Version</value>
    <comment>Program Version</comment>
  </data>
  <data name="Prototype_Name" xml:space="preserve">
    <value>Prototype Name</value>
    <comment>Prototype Name</comment>
  </data>
  <data name="Prupose_Code" xml:space="preserve">
    <value>Prupose Code</value>
    <comment>Prupose Code</comment>
  </data>
  <data name="Recipe" xml:space="preserve">
    <value>Recipe</value>
    <comment>Recipe</comment>
  </data>
  <data name="Recipe_Name" xml:space="preserve">
    <value>Recipe Name</value>
    <comment>Recipe Name</comment>
  </data>
  <data name="Red" xml:space="preserve">
    <value>Red</value>
    <comment>Red</comment>
  </data>
  <data name="Refresh" xml:space="preserve">
    <value>Refresh</value>
    <comment>Refresh</comment>
  </data>
  <data name="REL" xml:space="preserve">
    <value>REL</value>
    <comment>REL</comment>
  </data>
  <data name="Relative" xml:space="preserve">
    <value>Relative</value>
    <comment>Relative</comment>
  </data>
  <data name="Repeat" xml:space="preserve">
    <value>Repeat</value>
    <comment>Repeat</comment>
  </data>
  <data name="RESET" xml:space="preserve">
    <value>RESET</value>
    <comment>RESET</comment>
  </data>
  <data name="Retry_Parameter" xml:space="preserve">
    <value>Retry Parameter</value>
    <comment>Retry Parameter</comment>
  </data>
  <data name="Reverse" xml:space="preserve">
    <value>Reverse</value>
    <comment>Reverse</comment>
  </data>
  <data name="Reverse_Stage" xml:space="preserve">
    <value>Reverse Stage</value>
    <comment>Reverse Stage</comment>
  </data>
  <data name="Reverse_Stage_To_Pre_Align" xml:space="preserve">
    <value>Reverse Stage -&gt; Pre Align</value>
    <comment>Reverse Stage -&gt; Pre Align</comment>
  </data>
  <data name="Reverse_T_0" xml:space="preserve">
    <value>Reverse T 0</value>
    <comment>Reverse T 0</comment>
  </data>
  <data name="Reverse_T_180" xml:space="preserve">
    <value>Reverse T 180</value>
    <comment>Reverse T 180</comment>
  </data>
  <data name="Reverse_Z_Down" xml:space="preserve">
    <value>Reverse Z Down</value>
    <comment>Reverse Z Down</comment>
  </data>
  <data name="Reverse_Z_Up" xml:space="preserve">
    <value>Reverse Z Up</value>
    <comment>Reverse Z Up</comment>
  </data>
  <data name="Row" xml:space="preserve">
    <value>Row</value>
    <comment>Row</comment>
  </data>
  <data name="Save" xml:space="preserve">
    <value>Save</value>
    <comment>Save</comment>
  </data>
  <data name="SAVE_TO_CSV" xml:space="preserve">
    <value>SAVE TO .CSV</value>
    <comment>SAVE TO .CSV</comment>
  </data>
  <data name="Scanner_Info" xml:space="preserve">
    <value>Scanner Info</value>
    <comment>Scanner Info</comment>
  </data>
  <data name="Scanner_Offset_Data" xml:space="preserve">
    <value>Scanner Offset Data</value>
    <comment>Scanner Offset Data</comment>
  </data>
  <data name="Scanner_Position_Data" xml:space="preserve">
    <value>Scanner Position Data</value>
    <comment>Scanner Position Data</comment>
  </data>
  <data name="SCANNER_RUN" xml:space="preserve">
    <value>SCANNER RUN</value>
    <comment>SCANNER RUN</comment>
  </data>
  <data name="SCANNER_TEST_RUN" xml:space="preserve">
    <value>SCANNER TEST RUN</value>
    <comment>SCANNER TEST RUN</comment>
  </data>
  <data name="Scanner_T_A1" xml:space="preserve">
    <value>Scanner T A1</value>
    <comment>Scanner T A1</comment>
  </data>
  <data name="Scanner_T_A2" xml:space="preserve">
    <value>Scanner T A2</value>
    <comment>Scanner T A2</comment>
  </data>
  <data name="Scanner_T_B1" xml:space="preserve">
    <value>Scanner T B1</value>
    <comment>Scanner T B1</comment>
  </data>
  <data name="Scanner_T_B2" xml:space="preserve">
    <value>Scanner T B2</value>
    <comment>Scanner T B2</comment>
  </data>
  <data name="SCANNER_VIEW" xml:space="preserve">
    <value>SCANNER VIEW</value>
    <comment>SCANNER VIEW</comment>
  </data>
  <data name="Scanner_X_A1" xml:space="preserve">
    <value>Scanner X A1</value>
    <comment>Scanner X A1</comment>
  </data>
  <data name="Scanner_X_A1_Position" xml:space="preserve">
    <value>Scanner X A1 Position</value>
    <comment>Scanner X A1 Position</comment>
  </data>
  <data name="Scanner_X_A2" xml:space="preserve">
    <value>Scanner X A2</value>
    <comment>Scanner X A2</comment>
  </data>
  <data name="Scanner_X_A2_Position" xml:space="preserve">
    <value>Scanner X A2 Position</value>
    <comment>Scanner X A2 Position</comment>
  </data>
  <data name="Scanner_X_B1" xml:space="preserve">
    <value>Scanner X B1</value>
    <comment>Scanner X B1</comment>
  </data>
  <data name="Scanner_X_B1_Position" xml:space="preserve">
    <value>Scanner X B1 Position</value>
    <comment>Scanner X B1 Position</comment>
  </data>
  <data name="Scanner_X_B2" xml:space="preserve">
    <value>Scanner X B2</value>
    <comment>Scanner X B2</comment>
  </data>
  <data name="Scanner_X_B2_Position" xml:space="preserve">
    <value>Scanner X B2 Position</value>
    <comment>Scanner X B2 Position</comment>
  </data>
  <data name="Scanner_X_Power_Meter_Position" xml:space="preserve">
    <value>Scanner X Power Meter Position</value>
    <comment>Scanner X Power Meter Position</comment>
  </data>
  <data name="Scanner_Z_A1" xml:space="preserve">
    <value>Scanner Z A1</value>
    <comment>Scanner Z A1</comment>
  </data>
  <data name="Scanner_Z_A1_Position" xml:space="preserve">
    <value>Scanner Z A1 Position</value>
    <comment>Scanner Z A1 Position</comment>
  </data>
  <data name="Scanner_Z_A2" xml:space="preserve">
    <value>Scanner Z A2</value>
    <comment>Scanner Z A2</comment>
  </data>
  <data name="Scanner_Z_A2_Position" xml:space="preserve">
    <value>Scanner Z A2 Position</value>
    <comment>Scanner Z A2 Position</comment>
  </data>
  <data name="Scanner_Z_B1" xml:space="preserve">
    <value>Scanner Z B1</value>
    <comment>Scanner Z B1</comment>
  </data>
  <data name="Scanner_Z_B1_Position" xml:space="preserve">
    <value>Scanner Z B1 Position</value>
    <comment>Scanner Z B1 Position</comment>
  </data>
  <data name="Scanner_Z_B2" xml:space="preserve">
    <value>Scanner Z B2</value>
    <comment>Scanner Z B2</comment>
  </data>
  <data name="Scanner_Z_B2_Position" xml:space="preserve">
    <value>Scanner Z B2 Position</value>
    <comment>Scanner Z B2 Position</comment>
  </data>
  <data name="Scanner_Z_Power_Meter_Position" xml:space="preserve">
    <value>Scanner Z Power Meter Position</value>
    <comment>Scanner Z Power Meter Position</comment>
  </data>
  <data name="SELECT" xml:space="preserve">
    <value>SELECT</value>
    <comment>SELECT</comment>
  </data>
  <data name="SELECT_DATE" xml:space="preserve">
    <value>SELECT DATE</value>
    <comment>SELECT DATE</comment>
  </data>
  <data name="SELECT_MODE" xml:space="preserve">
    <value>SELECT MODE</value>
    <comment>SELECT MODE</comment>
  </data>
  <data name="SELECT_TIME" xml:space="preserve">
    <value>SELECT TIME</value>
    <comment>SELECT TIME</comment>
  </data>
  <data name="SEQUENCE_VIEW" xml:space="preserve">
    <value>SEQUENCE VIEW</value>
    <comment>SEQUENCE VIEW</comment>
  </data>
  <data name="Servo_Off" xml:space="preserve">
    <value>Servo Off</value>
    <comment>Servo Off</comment>
  </data>
  <data name="Servo_On" xml:space="preserve">
    <value>Servo On</value>
    <comment>Servo On</comment>
  </data>
  <data name="Setting" xml:space="preserve">
    <value>Setting</value>
    <comment>Setting</comment>
  </data>
  <data name="Setting_Position" xml:space="preserve">
    <value>Setting Position</value>
    <comment>Setting Position</comment>
  </data>
  <data name="Setting_Speed" xml:space="preserve">
    <value>Setting Speed</value>
    <comment>Setting Speed</comment>
  </data>
  <data name="Set_Position" xml:space="preserve">
    <value>Set Position</value>
    <comment>Set Position</comment>
  </data>
  <data name="Set_Speed" xml:space="preserve">
    <value>Set Speed</value>
    <comment>Set Speed</comment>
  </data>
  <data name="Space_Data" xml:space="preserve">
    <value>Space Data</value>
    <comment>Space Data</comment>
  </data>
  <data name="SPEED" xml:space="preserve">
    <value>SPEED</value>
    <comment>SPEED</comment>
  </data>
  <data name="SPEED1" xml:space="preserve">
    <value>SPEED</value>
    <comment>SPEED</comment>
  </data>
  <data name="Speed_Parameter" xml:space="preserve">
    <value>Speed Parameter</value>
    <comment>Speed Parameter</comment>
  </data>
  <data name="Start" xml:space="preserve">
    <value>Start</value>
    <comment>Start</comment>
  </data>
  <data name="Start_X" xml:space="preserve">
    <value>Start X</value>
    <comment>Start X</comment>
  </data>
  <data name="Start_Y" xml:space="preserve">
    <value>Start Y</value>
    <comment>Start Y</comment>
  </data>
  <data name="Status" xml:space="preserve">
    <value>Status</value>
    <comment>Status</comment>
  </data>
  <data name="Stay_Position" xml:space="preserve">
    <value>Stay Position</value>
    <comment>Stay Position</comment>
  </data>
  <data name="Stop" xml:space="preserve">
    <value>Stop</value>
    <comment>Stop</comment>
  </data>
  <data name="SYSTEM_PARAMETER" xml:space="preserve">
    <value>SYSTEM PARAMETER</value>
    <comment>SYSTEM PARAMETER</comment>
  </data>
  <data name="T" xml:space="preserve">
    <value>T</value>
    <comment>T</comment>
  </data>
  <data name="Teaching_Move" xml:space="preserve">
    <value>Teaching Move</value>
    <comment>Teaching Move</comment>
  </data>
  <data name="Team" xml:space="preserve">
    <value>Team</value>
    <comment>Team</comment>
  </data>
  <data name="Time_Out_Parameter" xml:space="preserve">
    <value>Time Out Parameter</value>
    <comment>Time Out Parameter</comment>
  </data>
  <data name="TRAY" xml:space="preserve">
    <value>TRAY</value>
    <comment>TRAY</comment>
  </data>
  <data name="Tray_Count" xml:space="preserve">
    <value>Tray Count</value>
    <comment>Tray Count</comment>
  </data>
  <data name="Tray_Info_Recipe" xml:space="preserve">
    <value>Tray Info Recipe</value>
    <comment>Tray Info Recipe</comment>
  </data>
  <data name="Tray_Pitch" xml:space="preserve">
    <value>Tray Pitch</value>
    <comment>Tray Pitch</comment>
  </data>
  <data name="Tray_To_Conveyor" xml:space="preserve">
    <value>Tray -&gt; Conveyor</value>
    <comment>Tray -&gt; Conveyor</comment>
  </data>
  <data name="Tray_To_Loader" xml:space="preserve">
    <value>Tray -&gt; Loader</value>
    <comment>Tray -&gt; Loader</comment>
  </data>
  <data name="Tray_To_Pre_Align" xml:space="preserve">
    <value>Tray -&gt; Pre Align</value>
    <comment>Tray -&gt; Pre Align</comment>
  </data>
  <data name="Tray_To_Reverse_Stage" xml:space="preserve">
    <value>Tray -&gt; Reverse Stage</value>
    <comment>Tray -&gt; Reverse Stage</comment>
  </data>
  <data name="Tray_Unloading" xml:space="preserve">
    <value>Tray Unloading</value>
    <comment>Tray Unloading</comment>
  </data>
  <data name="ULD_BCR" xml:space="preserve">
    <value>ULD BCR</value>
    <comment>ULD BCR</comment>
  </data>
  <data name="ULD_Empty_Count" xml:space="preserve">
    <value>ULD Empty Count</value>
    <comment>ULD Empty Count</comment>
  </data>
  <data name="ULD_Empty_Current_Count" xml:space="preserve">
    <value>ULD Empty Current Count</value>
    <comment>ULD Empty Current Count</comment>
  </data>
  <data name="ULD_Handler_1" xml:space="preserve">
    <value>ULD Handler 1</value>
    <comment>ULD Handler 1</comment>
  </data>
  <data name="ULD_Handler_1_X" xml:space="preserve">
    <value>ULD Handler 1 X</value>
    <comment>ULD Handler 1 X</comment>
  </data>
  <data name="ULD_Handler_1_X_AOI_Stage_Position" xml:space="preserve">
    <value>ULD Handler #1 X AOI Stage Position</value>
    <comment>ULD Handler #1 X AOI Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_X_Reverse_Stage_Position" xml:space="preserve">
    <value>ULD Handler #1 X Reverse Stage Position</value>
    <comment>ULD Handler #1 X Reverse Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_X_Stay_Position" xml:space="preserve">
    <value>ULD Handler #1 X Stay Position</value>
    <comment>ULD Handler #1 X Stay Position</comment>
  </data>
  <data name="ULD_Handler_1_Y" xml:space="preserve">
    <value>ULD Handler 1 Y</value>
    <comment>ULD Handler 1 Y</comment>
  </data>
  <data name="ULD_Handler_1_Y_AOI_Stage_Position" xml:space="preserve">
    <value>ULD Handler #1 Y AOI Stage Position</value>
    <comment>ULD Handler #1 Y AOI Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_Y_Reverse_Stage_Position" xml:space="preserve">
    <value>ULD Handler #1 Y Reverse Stage Position</value>
    <comment>ULD Handler #1 Y Reverse Stage Position</comment>
  </data>
  <data name="ULD_Handler_1_Y_Stay_Position" xml:space="preserve">
    <value>ULD Handler #1 Y Stay Position</value>
    <comment>ULD Handler #1 Y Stay Position</comment>
  </data>
  <data name="ULD_Handler_2" xml:space="preserve">
    <value>ULD Handler 2</value>
    <comment>ULD Handler 2</comment>
  </data>
  <data name="ULD_Handler_2_X_Stay_Position" xml:space="preserve">
    <value>ULD Handler #2 X Stay Position</value>
    <comment>ULD Handler #2 X Stay Position</comment>
  </data>
  <data name="ULD_Handler_2_Y_Stay_Position" xml:space="preserve">
    <value>ULD Handler #2 Y Stay Position</value>
    <comment>ULD Handler #2 Y Stay Position</comment>
  </data>
  <data name="ULD_NG_Count" xml:space="preserve">
    <value>ULD NG Count</value>
    <comment>ULD NG Count</comment>
  </data>
  <data name="ULD_NG_Current_Count" xml:space="preserve">
    <value>ULD NG Current Count</value>
    <comment>ULD NG Current Count</comment>
  </data>
  <data name="ULD_NG_Tray_Bwd" xml:space="preserve">
    <value>ULD NG Tray Bwd</value>
    <comment>ULD NG Tray Bwd</comment>
  </data>
  <data name="ULD_NG_Tray_Fwd" xml:space="preserve">
    <value>ULD NG Tray Fwd</value>
    <comment>ULD NG Tray Fwd</comment>
  </data>
  <data name="ULD_OK_Count" xml:space="preserve">
    <value>ULD OK Count</value>
    <comment>ULD OK Count</comment>
  </data>
  <data name="ULD_OK_Current_Count" xml:space="preserve">
    <value>ULD OK Current Count</value>
    <comment>ULD OK Current Count</comment>
  </data>
  <data name="ULD_Reverse" xml:space="preserve">
    <value>ULD Reverse</value>
    <comment>ULD Reverse</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_0_Deg_Position" xml:space="preserve">
    <value>ULD Reverse Unit #1 0 Deg Position</value>
    <comment>ULD Reverse Unit #1 0 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_180_Deg_Position" xml:space="preserve">
    <value>ULD Reverse Unit #1 180 Deg Position</value>
    <comment>ULD Reverse Unit #1 180 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_Down_Position" xml:space="preserve">
    <value>ULD Reverse Unit #1 Down Position</value>
    <comment>ULD Reverse Unit #1 Down Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_1_Up_Position" xml:space="preserve">
    <value>ULD Reverse Unit #1 Up Position</value>
    <comment>ULD Reverse Unit #1 Up Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_0_Deg_Position" xml:space="preserve">
    <value>ULD Reverse Unit #2 0 Deg Position</value>
    <comment>ULD Reverse Unit #2 0 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_180_Deg_Position" xml:space="preserve">
    <value>ULD Reverse Unit #2 180 Deg Position</value>
    <comment>ULD Reverse Unit #2 180 Deg Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_Down_Position" xml:space="preserve">
    <value>ULD Reverse Unit #2 Down Position</value>
    <comment>ULD Reverse Unit #2 Down Position</comment>
  </data>
  <data name="ULD_Reverse_Unit_2_Up_Position" xml:space="preserve">
    <value>ULD Reverse Unit #2 Up Position</value>
    <comment>ULD Reverse Unit #2 Up Position</comment>
  </data>
  <data name="ULD_STACKER" xml:space="preserve">
    <value>ULD STACKER</value>
    <comment>ULD STACKER</comment>
  </data>
  <data name="ULD_Tray_Empty" xml:space="preserve">
    <value>ULD Tray Empty</value>
    <comment>ULD Tray Empty</comment>
  </data>
  <data name="ULD_Tray_NG" xml:space="preserve">
    <value>ULD Tray NG</value>
    <comment>ULD Tray NG</comment>
  </data>
  <data name="ULD_Tray_OK" xml:space="preserve">
    <value>ULD Tray OK</value>
    <comment>ULD Tray OK</comment>
  </data>
  <data name="ULD_Tray_Process" xml:space="preserve">
    <value>ULD Tray Process</value>
    <comment>ULD Tray Process</comment>
  </data>
  <data name="ULD_Tray_Wait" xml:space="preserve">
    <value>ULD Tray Wait</value>
    <comment>ULD Tray Wait</comment>
  </data>
  <data name="Unload" xml:space="preserve">
    <value>Unload</value>
    <comment>Unload</comment>
  </data>
  <data name="Unloader" xml:space="preserve">
    <value>Unloader</value>
    <comment>Unloader</comment>
  </data>
  <data name="UNLOADER_MOTORS" xml:space="preserve">
    <value>UNLOADER MOTORS</value>
    <comment>UNLOADER MOTORS</comment>
  </data>
  <data name="UNLOADER_MOTORS_INITIALIZE" xml:space="preserve">
    <value>UNLOADER MOTORS INITIALIZE</value>
    <comment>UNLOADER MOTORS INITIALIZE</comment>
  </data>
  <data name="UNLOADER_MOTORS_INITIALIZE_PROGRESS" xml:space="preserve">
    <value>UNLOADER MOTORS INITIALIZE PROGRESS</value>
    <comment>UNLOADER MOTORS INITIALIZE PROGRESS</comment>
  </data>
  <data name="UNLOADER_REVERSE" xml:space="preserve">
    <value>UNLOADER REVERSE</value>
    <comment>UNLOADER REVERSE</comment>
  </data>
  <data name="UNLOAD_HANDLER_1" xml:space="preserve">
    <value>UNLOAD HANDLER 1</value>
    <comment>UNLOAD HANDLER 1</comment>
  </data>
  <data name="UNLOAD_HANDLER_2" xml:space="preserve">
    <value>UNLOAD HANDLER 2</value>
    <comment>UNLOAD HANDLER 2</comment>
  </data>
  <data name="Unload_Handler_2_X_Ablation_Stage_1_Position" xml:space="preserve">
    <value>Unload Handler #2 X Ablation Stage #1 Position</value>
    <comment>Unload Handler #2 X Ablation Stage #1 Position</comment>
  </data>
  <data name="Unload_Handler_2_X_Ablation_Stage_2_Position" xml:space="preserve">
    <value>Unload Handler #2 X Ablation Stage #2 Position</value>
    <comment>Unload Handler #2 X Ablation Stage #2 Position</comment>
  </data>
  <data name="Unload_Handler_2_X_AOI_Stage_Position" xml:space="preserve">
    <value>Unload Handler #2 X AOI Stage Position</value>
    <comment>Unload Handler #2 X AOI Stage Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_Ablation_Stage_1_Position" xml:space="preserve">
    <value>Unload Handler #2 Y Ablation Stage #1 Position</value>
    <comment>Unload Handler #2 Y Ablation Stage #1 Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_Ablation_Stage_2_Position" xml:space="preserve">
    <value>Unload Handler #2 Y Ablation Stage #2 Position</value>
    <comment>Unload Handler #2 Y Ablation Stage #2 Position</comment>
  </data>
  <data name="Unload_Handler_2_Y_AOI_Stage_Position" xml:space="preserve">
    <value>Unload Handler #2 Y AOI Stage Position</value>
    <comment>Unload Handler #2 Y AOI Stage Position</comment>
  </data>
  <data name="Unload_To_Tray" xml:space="preserve">
    <value>Unload -&gt; Tray</value>
    <comment>Unload -&gt; Tray</comment>
  </data>
  <data name="Unload_Tray_Empty_Z_Tray_Process_Position" xml:space="preserve">
    <value>Unload Tray Empty Z Tray Process Position</value>
    <comment>Unload Tray Empty Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_Empty_Z_Tray_Wait_Position" xml:space="preserve">
    <value>Unload Tray Empty Z Tray Wait Position</value>
    <comment>Unload Tray Empty Z Tray Wait Position</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_EMPTY" xml:space="preserve">
    <value>UNLOAD TRAY LIFT EMPTY</value>
    <comment>UNLOAD TRAY LIFT EMPTY</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_NG" xml:space="preserve">
    <value>UNLOAD TRAY LIFT NG</value>
    <comment>UNLOAD TRAY LIFT NG</comment>
  </data>
  <data name="UNLOAD_TRAY_LIFT_OK" xml:space="preserve">
    <value>UNLOAD TRAY LIFT OK</value>
    <comment>UNLOAD TRAY LIFT OK</comment>
  </data>
  <data name="Unload_Tray_NG_Z_Tray_Process_Position" xml:space="preserve">
    <value>Unload Tray NG Z Tray Process Position</value>
    <comment>Unload Tray NG Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_NG_Z_Tray_Wait_Position" xml:space="preserve">
    <value>Unload Tray NG Z Tray Wait Position</value>
    <comment>Unload Tray NG Z Tray Wait Position</comment>
  </data>
  <data name="Unload_Tray_OK_Z_Tray_Process_Position" xml:space="preserve">
    <value>Unload Tray OK Z Tray Process Position</value>
    <comment>Unload Tray OK Z Tray Process Position</comment>
  </data>
  <data name="Unload_Tray_OK_Z_Tray_Wait_Position" xml:space="preserve">
    <value>Unload Tray OK Z Tray Wait Position</value>
    <comment>Unload Tray OK Z Tray Wait Position</comment>
  </data>
  <data name="UNLOAD_TRAY_TR" xml:space="preserve">
    <value>UNLOAD TRAY TR</value>
    <comment>UNLOAD TRAY TR</comment>
  </data>
  <data name="Unload_Tray_TR_X_Empty_Position" xml:space="preserve">
    <value>Unload Tray TR X Empty Position</value>
    <comment>Unload Tray TR X Empty Position</comment>
  </data>
  <data name="Unload_Tray_TR_X_NG_Position" xml:space="preserve">
    <value>Unload Tray TR X NG Position</value>
    <comment>Unload Tray TR X NG Position</comment>
  </data>
  <data name="Unload_Tray_TR_X_OK_Position" xml:space="preserve">
    <value>Unload Tray TR X OK Position</value>
    <comment>Unload Tray TR X OK Position</comment>
  </data>
  <data name="USE" xml:space="preserve">
    <value>USE</value>
    <comment>USE</comment>
  </data>
  <data name="User_ID" xml:space="preserve">
    <value>User ID</value>
    <comment>User ID</comment>
  </data>
  <data name="USER_INFO" xml:space="preserve">
    <value>USER INFO</value>
    <comment>USER INFO</comment>
  </data>
  <data name="User_Info1" xml:space="preserve">
    <value>User Info</value>
    <comment>User Info</comment>
  </data>
  <data name="User_Info2" xml:space="preserve">
    <value>User Info</value>
    <comment>User Info</comment>
  </data>
  <data name="Vaccum_Timeout_sec" xml:space="preserve">
    <value>Vaccum Timeout(s)</value>
    <comment>Vaccum Timeout(s)</comment>
  </data>
  <data name="Value" xml:space="preserve">
    <value>Value</value>
    <comment>Value</comment>
  </data>
  <data name="Velocity" xml:space="preserve">
    <value>Velocity</value>
    <comment>Velocity</comment>
  </data>
  <data name="Vision_Hear_Beat_Timeout_sec" xml:space="preserve">
    <value>Vision Hear Beat Timeout(s)</value>
    <comment>Vision Hear Beat Timeout(s)</comment>
  </data>
  <data name="Vision_Info_Recipe" xml:space="preserve">
    <value>Vision Info Recipe</value>
    <comment>Vision Info Recipe</comment>
  </data>
  <data name="Vision_Move_Delay_sec" xml:space="preserve">
    <value>Vision Move Delay(s)</value>
    <comment>Vision Move Delay(s)</comment>
  </data>
  <data name="Vision_Retry_Count" xml:space="preserve">
    <value>Vision Retry Count</value>
    <comment>Vision Retry Count</comment>
  </data>
  <data name="VISION_TEST" xml:space="preserve">
    <value>VISION TEST</value>
    <comment>VISION TEST</comment>
  </data>
  <data name="Vision_Timeout_sec" xml:space="preserve">
    <value>Vision Timeout(s)</value>
    <comment>Vision Timeout(s)</comment>
  </data>
  <data name="Waveform" xml:space="preserve">
    <value>Waveform</value>
    <comment>Waveform</comment>
  </data>
  <data name="Work_Area_X" xml:space="preserve">
    <value>Work Area X</value>
    <comment>Work Area X</comment>
  </data>
  <data name="Work_Area_Y" xml:space="preserve">
    <value>Work Area Y</value>
    <comment>Work Area Y</comment>
  </data>
  <data name="X" xml:space="preserve">
    <value>X</value>
    <comment>X</comment>
  </data>
  <data name="Y" xml:space="preserve">
    <value>Y</value>
    <comment>Y</comment>
  </data>
  <data name="Yellow" xml:space="preserve">
    <value>Yellow</value>
    <comment>Yellow</comment>
  </data>
  <data name="_0_Deg" xml:space="preserve">
    <value>0 Deg</value>
    <comment>0 Deg</comment>
  </data>
  <data name="_180_Deg" xml:space="preserve">
    <value>180 Deg</value>
    <comment>180 Deg</comment>
  </data>
  <data name="_90_Deg" xml:space="preserve">
    <value>90 Deg</value>
    <comment>90 Deg</comment>
  </data>
  <data name="_minus_90_Deg" xml:space="preserve">
    <value>-90 Deg</value>
    <comment>-90 Deg</comment>
  </data>
  <data name="Cleaning_Position" xml:space="preserve">
    <value>Cleaning Position</value>
    <comment>Cleaning Position</comment>
  </data>
</root>