renhao
2023-10-18 ff1d40a1a235da7c3bdfa26070af267f19c7a3d3
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
Quintiq file version 2.0
#parent: #root
ColorScheme
{
  #keys: '1[113694.0.2025111933]'
  Name: 'Global'
  Supplier: '0 1 1'
  Entries:
  [
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ActualProductInStockingPointInPeriod_IsActualProductShelfLifeOK'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'AlgorithmRun_HasNoErrorDuringRun'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'AlgorithmRun_HasTestInstanceInKT'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'BaseRecipeIngredient_IsNominalWithinRange'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'BaseSalesDemandInPeriod_HasValidPostponement'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'BaseSalesDemandInPeriod_HasValidPostponementOverMaxPeriod'
    }
    ColorSchemeEntry
    {
      Color: '$A6FFA6'
      Definition: 'BestScore'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'CampaignPeriod_MP_DELETED_Q320_IsCampaignWithinCapacity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'CampaignPeriod_MP_IsCampaignWithinCapacity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'CampaignType_MP_HasValidOperationInCampaignType'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_DELETED_Q320_IsPlannedGreaterThanMinQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_DELETED_Q320_IsPlannedWithNoOverlap'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_DELETED_Q320_IsPlannedWithinMaxQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_HasTransitionTypeToNextCampaign'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_IsPlannedGreaterThanMinRequired'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_IsPlannedWithNoOverlap'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Campaign_MP_IsPlannedWithinMaxRequired'
    }
    ColorSchemeChartEntry
    {
      Definition: 'CurrencyRates'
      ChartEntryValue { Access: 738766.584444444 Color: '$B22900' Value: 'HUF' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2004D' Value: '港元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B2A6' Value: '黎巴嫩镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$AFE572' Value: '乌兹别克斯坦苏姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0B00B2' Value: '圭亚那元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E58B' Value: '苏丹第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$729CE5' Value: '托拉尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E572CC' Value: '津巴布韦元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6AFE00' Value: '格查尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E5CE' Value: '菲律宾比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5A872' Value: 'TRY' }
      ChartEntryValue { Access: 738766.584444444 Color: '$981E4D' Value: '第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$003FFF' Value: 'DKK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B2B0' Value: '阿曼里亚尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FEA54C' Value: '巴波亚' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6BB235' Value: '智利比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$98824C' Value: 'ZAR' }
      ChartEntryValue { Access: 738766.584444444 Color: '$144ECB' Value: '巴西雷阿尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B23542' Value: '塔拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E572DF' Value: '债券市场单位 - 欧洲记帐单位 17 (E.U.A.-17)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFE6A' Value: '摩尔多瓦列伊' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00B282' Value: '也门第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7B4C98' Value: '墨西哥比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A000B2' Value: '斯里兰卡卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4C6A' Value: '债券市场单位 - 欧洲货币合成单位 (EURCO)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7C35B2' Value: 'CFA 法郎 BEAC' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984C89' Value: 'CHF' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6A4CFE' Value: '澳门元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B28635' Value: '喜名' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5C472' Value: '加纳塞迪(旧)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB5178' Value: '卢旺达法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5BFE4C' Value: '安道尔比塞塔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E1FE4C' Value: '巴巴多斯元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$8200B2' Value: 'EEK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFED2' Value: '阿富汗尼' }
      ChartEntryValue { Access: 738766.584444444 Color: '$754C98' Value: '元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$981E94' Value: '西班牙比塞塔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C9862' Value: '刚果法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$143FCB' Value: '可兑换比塞塔帐户' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6E4C98' Value: 'CNY' }
      ChartEntryValue { Access: 738766.584444444 Color: '$63984C' Value: '摩洛哥迪拉姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DE583' Value: '尼泊尔卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5742D' Value: '拉里' }
      ChartEntryValue { Access: 738766.584444444 Color: '$70984C' Value: 'Uruguary Peso en Unidades Indexadas' }
      ChartEntryValue { Access: 738766.584444444 Color: '$69984C' Value: '塞尔维亚第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFEE1' Value: '约旦第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$411E98' Value: '新加坡元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E52D8F' Value: '北朝鲜元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$52E52D' Value: '新谢克尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E9822' Value: '乌吉亚' }
      ChartEntryValue { Access: 738766.584444444 Color: '$20B200' Value: '苏克雷' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CBA114' Value: '马来西亚林吉特' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE3F00' Value: '可兑换马克' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E6198' Value: '布隆迪法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E582' Value: '苏里南元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$988E4C' Value: '塞舌尔卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72A6E5' Value: '新南斯拉夫第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14CB36' Value: '钯' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C8998' Value: '新索尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B4FE4C' Value: '利比里亚元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00FE7F' Value: '普拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CDE52D' Value: '新宽扎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00B256' Value: 'KRW' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14CB26' Value: '文莱元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5196CB' Value: '马达加斯加阿里亚里' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B23800' Value: '金' }
      ChartEntryValue { Access: 738766.584444444 Color: '$F04CFE' Value: '澳大拉西亚' }
      ChartEntryValue { Access: 738766.584444444 Color: '$372DE5' Value: '特殊结算币种 - 金法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DE592' Value: '图格里克' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B267' Value: '里兰吉尼' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FF00BF' Value: 'PHP' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2005C' Value: 'RON' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B23595' Value: '东加勒比元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E6C98' Value: '达拉西' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CCE572' Value: 'JPY' }
      ChartEntryValue { Access: 738766.584444444 Color: '$78CB51' Value: 'USD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7F00FF' Value: 'PLN' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE007F' Value: '克鲁扎多' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E5C4' Value: 'NOK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E5798' Value: '新台币' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2AF00' Value: 'HKD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C9868' Value: '萨尔瓦多科郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E57289' Value: '福林' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B12DE5' Value: '比利时法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51ABCB' Value: '南斯拉夫第纳尔(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7135B2' Value: '阿鲁巴岛盾' }
      ChartEntryValue { Access: 738766.584444444 Color: '$3FFE00' Value: '克鲁恩' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2900B2' Value: '加拿大元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE00AA' Value: '古德' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2C1E98' Value: '荷属安的列斯群岛盾' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4CF0' Value: '银' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0079B2' Value: '荷兰盾' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6ECB51' Value: '阿塞拜疆马奈特(旧)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$359FB2' Value: '统计' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7CCB14' Value: '牙买加元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C6398' Value: 'INR' }
      ChartEntryValue { Access: 738766.584444444 Color: '$BFCB51' Value: '奈拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B5CB51' Value: '卢森堡法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B29B35' Value: '债券市场单位 - 欧洲记帐单位 9 (E.U.A.-9)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$D2FE4C' Value: '阿塞拜疆马奈特' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51CB9B' Value: '瑞典克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$8A981E' Value: '丹麦克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C9895' Value: 'SEK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$63CB51' Value: '努尔特鲁姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A872E5' Value: '卡尔伯瓦聂兹' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4C5B' Value: '美元(次日)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2FB200' Value: 'MYR' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C5D98' Value: '委内瑞拉博利瓦' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB14B9' Value: '列克' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C9098' Value: '纳克法' }
      ChartEntryValue { Access: 738766.584444444 Color: '$8635B2' Value: '先令' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FEFE00' Value: '克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A551CB' Value: 'Euro' }
      ChartEntryValue { Access: 738766.584444444 Color: '$54FE00' Value: '白俄罗斯卢布' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00FE6A' Value: '保加利亚列弗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0000FE' Value: '克罗地亚第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$8BCB14' Value: '特殊结算币种 - UIC 法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$97B200' Value: '几内亚比绍比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E52D9F' Value: '马达加斯加法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$824C98' Value: '苏里南盾' }
      ChartEntryValue { Access: 738766.584444444 Color: '$61E52D' Value: '缅元(已废弃)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0002B2' Value: 'THB' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFE5B' Value: '扎伊尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2359F' Value: '直布罗陀镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB518C' Value: '巴哈马元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$794CFE' Value: '债券市场单位 - 欧洲货币单位 (E.M.U.-6)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B25600' Value: 'CFP 法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2002F' Value: '几内亚法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$9E72E5' Value: 'Unidades de formento' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A22DE5' Value: '利昂' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2A635' Value: '宽札' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB149B' Value: '科摩罗法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C986E' Value: '乌干达先令(作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14CBB0' Value: '瓜拉尼' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE0094' Value: '索莫尼' }
      ChartEntryValue { Access: 738766.584444444 Color: '$981E39' Value: '乌拉圭比索(1)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFE4C' Value: '白俄罗斯卢布(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$AF00B2' Value: '津巴布韦元(不再使用)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$874CFE' Value: '印地' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB7251' Value: '瑞尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E9874' Value: '马纳特(不再使用)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E578' Value: '玛纳特' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6735B2' Value: 'WIR 欧元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4C87' Value: '埃及镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984B1E' Value: '德国马克' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E987E' Value: '新土耳其里拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$80B235' Value: '盾' }
      ChartEntryValue { Access: 738766.584444444 Color: '$88B200' Value: '科多巴币' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFEC3' Value: '爱尔兰镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB5182' Value: '挪威克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B23537' Value: '阿拉伯联合酋长国迪拉姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB7C51' Value: '梅迪卡尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5D02D' Value: '多米尼加比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0088B2' Value: 'RUB' }
      ChartEntryValue { Access: 738766.584444444 Color: '$80981E' Value: '伯利兹元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2D43E5' Value: '东帝汶埃库多' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1A00B2' Value: '斯洛伐克克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5B172' Value: '克瓦查' }
      ChartEntryValue { Access: 738766.584444444 Color: '$24981E' Value: '铂' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B951CB' Value: '欧洲货币单位 (E.C.U.)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$005CB2' Value: '加纳塞迪' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00E9FE' Value: '哥斯达黎加科郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51A1CB' Value: '瑞士法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: 'Red' Value: 'EUR' }
      ChartEntryValue { Access: 738766.584444444 Color: '$964CFE' Value: '克瓦查(1)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6314CB' Value: '拉菲亚' }
      ChartEntryValue { Access: 738766.584444444 Color: '$BF00FE' Value: '洛蒂' }
      ChartEntryValue { Access: 738766.584444444 Color: '$3542B2' Value: '立陶宛里塔斯' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B248' Value: '新扎伊尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E57280' Value: '所罗门群岛元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14C8CB' Value: '无币种' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00BFFE' Value: '索姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2E981E' Value: '兹罗提(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B23580' Value: '拉脱维亚卢布' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984C76' Value: '列弗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72AFE5' Value: 'NZD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C87FE' Value: '日圆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E5D8' Value: '塔卡' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB142F' Value: '俄罗斯卢布(旧币)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4CE1' Value: '克罗地亚库纳' }
      ChartEntryValue { Access: 738766.584444444 Color: '$985F1E' Value: '土耳其里拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E172E5' Value: 'GBP' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51CB90' Value: '佛得角埃斯库多' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4CFE' Value: '阿尔及利亚第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5642D' Value: '伊朗里亚尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$354CB2' Value: 'Mexican Unidad de Inversion (UDI)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A900FE' Value: '拉脱维亚拉特' }
      ChartEntryValue { Access: 738766.584444444 Color: '$76B235' Value: '阿富汗尼(旧)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51CBA5' Value: '美提卡(旧)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B24700' Value: '吉布提法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14CBBF' Value: '新罗马尼亚列伊' }
      ChartEntryValue { Access: 738766.584444444 Color: '$02B200' Value: '开曼群岛元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$61B235' Value: '宽札(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$72E5E1' Value: '卡塔尔里亚尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FFBF00' Value: 'AUD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$DCE52D' Value: 'CFA 法郎 BCEAO' }
      ChartEntryValue { Access: 738766.584444444 Color: '$9100B2' Value: '马耳他里拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$98954C' Value: '纳米比亚元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984C83' Value: '财政法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$98884C' Value: '亚美尼亚德拉姆' }
      ChartEntryValue { Access: 738766.584444444 Color: '$11B200' Value: '墨西哥比索(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5414CB' Value: '俄罗斯卢布' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C9698' Value: '沙特里亚尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$002AFE' Value: '哥伦比亚比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00B274' Value: '苏丹镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$C3E572' Value: '斐济元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5D51CB' Value: '葡萄牙埃斯库多' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DBDE5' Value: '冰岛克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$981E43' Value: '法国法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C5698' Value: '姆维多' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35AAB2' Value: 'Unidad de Valor Constante (UVC)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6DCB14' Value: '毛里求斯卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$6851CB' Value: 'WIR 法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B9E572' Value: '意大利里拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB1420' Value: '也门里亚尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E57276' Value: '坚戈' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FEE900' Value: '乌干达先令' }
      ChartEntryValue { Access: 738766.584444444 Color: 'Cyan' Value: 'HRK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00D4FE' Value: '邦加' }
      ChartEntryValue { Access: 738766.584444444 Color: '$76984C' Value: 'SGD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$1E986A' Value: '测试' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5351CB' Value: '埃塞俄比亚比尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00B265' Value: '赫莱' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984C7C' Value: '美元(同日)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$371E98' Value: '美元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B29135' Value: '债券市场单位 - 欧洲记帐单位 17(已作废)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FEB44C' Value: '坦桑尼亚先令' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E52D80' Value: '特别提款权' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CFEF0' Value: '肯尼亚先令' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51B5CB' Value: 'RMB' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FED400' Value: '格鲁吉亚息票' }
      ChartEntryValue { Access: 738766.584444444 Color: '$AF51CB' Value: '金融兰德' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C96FE' Value: '印度卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CBC351' Value: 'BRL' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B25D' Value: 'Unidad de Valor Real' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DCDE5' Value: '乌拉圭比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$35B252' Value: '阿根廷比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$881E98' Value: '韩元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$76981E' Value: '瓦努阿图' }
      ChartEntryValue { Access: 738766.584444444 Color: '$C02DE5' Value: '特立尼达和多巴哥元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$A6B200' Value: '基普' }
      ChartEntryValue { Access: 738766.584444444 Color: '$5159CB' Value: 'TWD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$006BB2' Value: '叙利亚镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7293E5' Value: '新西兰元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB8651' Value: '卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7FFF00' Value: 'BGN' }
      ChartEntryValue { Access: 738766.584444444 Color: '$921E98' Value: '博利瓦' }
      ChartEntryValue { Access: 738766.584444444 Color: '$98551E' Value: '玻利维亚比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$51CB86' Value: 'Dollar' }
      ChartEntryValue { Access: 738766.584444444 Color: '$C9CB51' Value: '南斯拉夫第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$14CB45' Value: '可兑换的法郎' }
      ChartEntryValue { Access: 738766.584444444 Color: '$C3FE4C' Value: '英镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$9400FE' Value: '古巴比索' }
      ChartEntryValue { Access: 738766.584444444 Color: '$76E572' Value: 'LVL' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE964C' Value: '欧元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB9114' Value: '科多巴' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DAEE5' Value: '突尼斯第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$71E52D' Value: '泰铢' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C5098' Value: '列伊' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FEC34C' Value: '利比亚第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$FE4C79' Value: '兰特' }
      ChartEntryValue { Access: 738766.584444444 Color: '$59CB51' Value: '塔吉克斯坦卢布' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2003E' Value: '圣赫勒拿镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5BB72' Value: '苏丹第纳尔(旧)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$145DCB' Value: '德拉克马' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00FE55' Value: '马克' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CA5FE' Value: '塞浦路斯镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2DE574' Value: '多布拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E572D6' Value: '索马里先令' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E57293' Value: 'LTL' }
      ChartEntryValue { Access: 738766.584444444 Color: '$7314CB' Value: '科威特第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4C985B' Value: 'MXN' }
      ChartEntryValue { Access: 738766.584444444 Color: '$0015FE' Value: '百慕大元(百慕大元)' }
      ChartEntryValue { Access: 738766.584444444 Color: '$C351CB' Value: '伦皮拉' }
      ChartEntryValue { Access: 738766.584444444 Color: '$4CB4FE' Value: '澳元' }
      ChartEntryValue { Access: 738766.584444444 Color: '$3561B2' Value: '捷克克朗' }
      ChartEntryValue { Access: 738766.584444444 Color: '$9572E5' Value: '福克兰群岛镑' }
      ChartEntryValue { Access: 738766.584444444 Color: '$2D34E5' Value: '比索可折换' }
      ChartEntryValue { Access: 738766.584444444 Color: '$984C50' Value: 'CAD' }
      ChartEntryValue { Access: 738766.584444444 Color: '$3556B2' Value: '伊拉克第纳尔' }
      ChartEntryValue { Access: 738766.584444444 Color: '$E5DF2D' Value: '巴基斯坦卢比' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB5196' Value: '人民币' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB8214' Value: '卢布' }
      ChartEntryValue { Access: 738766.584444444 Color: '$B2358A' Value: '兹罗提' }
      ChartEntryValue { Access: 738766.584444444 Color: '$8B72E5' Value: 'IDR' }
      ChartEntryValue { Access: 738766.584444444 Color: '$00FF3F' Value: 'CZK' }
      ChartEntryValue { Access: 738766.584444444 Color: '$CB14AA' Value: '巴林第纳尔' }
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'DisaggregatedSalesDemandInPeriod_IsNotRestrictedByFulfillmentRestriction'
    }
    ColorSchemeEntry
    {
      Color: 'Orange'
      Definition: 'GanttChart_CampaignHorizonEnd'
    }
    ColorSchemeEntry
    {
      Color: '$333333'
      Definition: 'GanttChart_Changeover'
      OverwriteColor: true
    }
    ColorSchemeEntry
    {
      Color: '$008080'
      Definition: 'GanttChart_Custom1'
    }
    ColorSchemeEntry
    {
      Color: '$969696'
      Definition: 'GanttChart_Custom2'
    }
    ColorSchemeEntry
    {
      Color: '$F0E1FF'
      Definition: 'GanttChart_EndOfFrozenPeriod'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'GanttChart_Error'
    }
    ColorSchemeEntry
    {
      Color: 'White'
      Definition: 'GanttChart_Free'
    }
    ColorSchemeEntry
    {
      Color: '$00DD37'
      Definition: 'GanttChart_Good'
    }
    ColorSchemeEntry
    {
      Color: 'Light gray'
      Definition: 'GanttChart_Irrelevant'
    }
    ColorSchemeEntry
    {
      Color: '$D5AAFF'
      Definition: 'GanttChart_Neutral1'
    }
    ColorSchemeEntry
    {
      Color: 'Cyan'
      Definition: 'GanttChart_Neutral2'
    }
    ColorSchemeEntry
    {
      Color: 'Blue'
      Definition: 'GanttChart_StartOfPlanning'
    }
    ColorSchemeEntry
    {
      Color: 'Gray'
      Definition: 'GanttChart_Transition'
    }
    ColorSchemeEntry
    {
      Color: 'Orange'
      Definition: 'GanttChart_Warning1'
    }
    ColorSchemeEntry
    {
      Color: 'Yellow'
      Definition: 'GanttChart_Warning2'
    }
    ColorSchemeEntry
    {
      Color: '$DCDCDC'
      Definition: 'Grid'
    }
    ColorSchemeEntry
    {
      Color: '$ABABAB'
      Definition: 'History'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOActualProductInStockingPointInPeriod_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOActualProductInStockingPointInPeriod_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOActualUnitPeriod_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOBaseConversionFactor_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOBaseConversionFactor_HasValidSourceUOM'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOBaseConversionFactor_HasValidTargetUOM'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOCampaignType_MP_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOCampaign_MP_HasValidCampaignTypeName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOCurrencyRate_MP_HasValidCurrencyID'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IODisaggregationFactor_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IODisaggregationFactor_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFeedbackPeriodTaskOperation_HasVaildOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFeedbackProductInTrip_HasValidDestinationStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFeedbackProductInTrip_HasValidLane'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFeedbackProductInTrip_HasValidOriginStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFeedbackProductInTrip_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentRestriction_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentRestriction_HasValidSalesSegment'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentTarget_HasValidLink'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentTarget_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentTarget_HasValidSalesSegment'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOFulfillmentTarget_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventorySpecification_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventorySpecification_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventorySupplyCost_InvalidInventorySupplyConstraint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventorySupply_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventorySupply_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventoryValueAndCost_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOInventoryValueAndCost_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneCost_HasValidLane'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLegCost_HasValidLane'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLegCost_HasValidStockingPointDestination'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLegCost_HasValidStockingPointOrigin'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLeg_HasValidDestinationStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLeg_HasValidLaneID'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLaneLeg_HasValidOriginStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOLane_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationBOM_HasValidOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationBOM_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationBOM_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationCost_HasValidOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationInCampaignType_HasValidCampaignType'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationInCampaignType_HasValidOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationInTransitionType_HasValidOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationInTransitionType_HasValidTransitionType'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationInputGroup_HasValidOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationLink_HasValidDestinationOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperationLink_HasValidSourceOperation'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperation_HasValidRouting'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperation_HasValidRoutingStepName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOOperation_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOPISPSpecification_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOPISPSpecification_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOPostponedSalesDemandCost_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOPostponedSalesDemandCost_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOPostponementSpecification_HasValidSalesSegment'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOProductInLane_HasValidLane'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOProductInLane_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOProductValueAndCost_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOProduct_MP_HasValidParent'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IORecipeIngredient_HasValidRecipe'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IORecipeWithEffectiveDate_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IORecipeWithEffectiveDate_HasValidRecipe'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IORoutingStep_HasValidRouting'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSafetyStock_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSafetyStock_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSalesDemandBase_HasValidCurrency'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSalesDemandBase_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSalesDemandBase_HasValidSalesSegment'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSalesDemandBase_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOServiceLevel_HasValidLink'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOServiceLevel_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOServiceLevel_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOShiftDay_HasValidShiftPattern'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOStockingPointCapacity_HasValidStockingtPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOStockingPointCost_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOStockingPoint_MP_HasValidUOM'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSubsetEntityInOptimizerPuzzle_HasValidOptimizerPuzzleName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSubsetEntityInOptimizerPuzzle_HasValidStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSubsetEntityInOptimizerPuzzle_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSubsetProductInOptimizerPuzzle_HasValidOptimizerPuzzleName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSubsetProductInOptimizerPuzzle_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSupplySpecification_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOSupplySpecification_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOTransitionType_MP_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOTransportAvailability_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOTransportCapacity_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitAvailability_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitCalendarElement_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitCapacity_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitCost_HasValidUnitID'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitShiftPattern_HasValidShiftPattern'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnitShiftPattern_HasValidUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnit_HasValidCurrency'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'IOUnit_HasValidUOM'
    }
    ColorSchemeEntry
    {
      Color: '$D3F0FF'
      Definition: 'KPIBackground'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LaneCost_HasMatchingCostAndLaneUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Blue'
      Definition: 'LaneLeg'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LaneLegCost_HasMatchingCostAndLaneLegUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibDEF_Channel_HasValidVersion'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOBT_RunTask_NoErrorsDuringRun'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Analysis_HasIterations'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BT_BTS_HasCorrectTargetValue'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BT_KPI_HasCorrectTargetValue'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BT_TrackingTable_DatasetNameTooLong'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_HasEnabledPropagationAfterUserCode'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_HasNoBreakpoints'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_HasNoBreakpointsConditional'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_HasNoDatasetCopies'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_HasNoDatasetCopiesConditional'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_BreakpointPosition_IsDatasetCopyEnabled'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_ComponentConfiguration_IsCorrectlyConfigured'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Component_HasNoBreakpoints'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Component_HasNoDatasetCopies'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Component_HasUniqueName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Component_IsDatasetCopyEnabled'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Iteration_HasNoDatasetCopy'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Iteration_HasNoErrors'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Iteration_HasNoRollbacks'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Iteration_HasNoWarnings'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_Run_ComponentNamesAreUnique'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_StatisticScopeElement_HasData'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibOpt_StatisticScopeElement_IsStandardDeviationValid'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_TestSuiteMethod_IsExists'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_TestSuiteUnit_IsAllTestMethodsValid'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_TestSuiteUnit_IsExists'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_TestSuite_HasTestUnits'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_TestSuite_IsAllTestUnitsValid'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'LibUTF_Unit_HasPositiveNrOfIterationsSetInEditor'
    }
    ColorSchemeEntry
    {
      Color: 'Black'
      Definition: 'NodeText'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationCost_HasMatchingCostAndOperationUnit'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputGroup_HasTotalInputQuantityEqualToQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputGroup_HasTotalMaxInputQuantityMoreThanOrEqualGroupQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputGroup_HasTotalMinInputQuantityLessThanOrEqualGroupQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputGroup_HasValidTotalInputQuantityGreaterThanZero'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputOutputPISPNode_HasValidPISP'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'OperationInputOutputPISPNode_HasValidProduct'
    }
    ColorSchemeEntry
    {
      Color: 'Black'
      Definition: 'Outline'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'PISPNodeInRouting_IsAssignedToStockingPoint'
    }
    ColorSchemeEntry
    {
      Color: '$49E649'
      Definition: 'PeriodOverviewGanttChartFuture'
    }
    ColorSchemeEntry
    {
      Color: '$AEAEAE'
      Definition: 'PeriodOverviewGanttChartHistorical'
    }
    ColorSchemeEntry
    {
      Color: '$7CB5EF'
      Definition: 'PeriodOverviewGanttChartPlanning'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'PeriodTaskOperation_HasConformLotSizingRequirement'
    }
    ColorSchemeEntry
    {
      Color: '$ABABAB'
      Definition: 'Period_HistoricalPeriods'
    }
    ColorSchemeEntry
    {
      Color: '$408080'
      Definition: 'Product'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_HasMatchingAvailableUserSupply'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_HasProcessOutput'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_IsActualProductShelfLifeOK'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_IsFulfilledAllDependentDemand'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_IsPlannedWithinMaximumInventoryLevel'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ProductInStockingPointInPeriodPlanning_IsProductShelfLifeOK'
    }
    ColorSchemeChartEntry
    {
      Definition: 'ProductInStockingPoint_InventoryLevel'
    }
    ColorSchemeChartEntry
    {
      Definition: 'ProductInStockingPoint_MaxCapacity'
    }
    ColorSchemeChartEntry
    {
      Definition: 'ProductInStockingPoint_TargetInventoryLevel'
    }
    ColorSchemeEntry
    {
      Color: '$EBEBEB'
      Definition: 'ProductPlanningMatrix_Historical'
    }
    ColorSchemeEntry
    {
      Color: '$99FF99'
      Definition: 'ProductPlanningMatrix_NegativeInventoryAllowed'
    }
    ColorSchemeEntry
    {
      Color: '$FFCC99'
      Definition: 'ProductPlanningMatrix_UnderfulfilledSalesDeamnd'
    }
    ColorSchemeEntry
    {
      Color: '$FFCCCC'
      Definition: 'ProductPlanningMatrix_UnfulfilledDependentDemand'
    }
    ColorSchemeEntry
    {
      Color: '$FFFFCC'
      Definition: 'ProductPlanningMatrix_UnfulfilledInventoryDemand'
    }
    ColorSchemeEntry
    {
      Color: '$99FFFF'
      Definition: 'ProductPlanningMatrix_ValueLocked'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Recipe_IsSumOfNominalOK'
    }
    ColorSchemeEntry
    {
      Color: '$B3BDC4'
      Definition: 'RoutingConfiguratorDisabled'
    }
    ColorSchemeEntry
    {
      Color: '$566978'
      Definition: 'RoutingConfiguratorDisabled_InputOutput'
    }
    ColorSchemeEntry
    {
      Color: '$0066CC'
      Definition: 'RoutingConfigurator_DropHereHelp'
    }
    ColorSchemeEntry
    {
      Color: 'Cyan'
      Definition: 'RoutingConfigurator_ElementOfInputGroup'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'RoutingConfigurator_FloatingProduct'
    }
    ColorSchemeEntry
    {
      Color: '$A6B8CE'
      Definition: 'RoutingConfigurator_Operation1'
    }
    ColorSchemeEntry
    {
      Color: '$A6B8CE'
      Definition: 'RoutingConfigurator_Operation2'
    }
    ColorSchemeEntry
    {
      Color: 'Blue'
      Definition: 'RoutingConfigurator_OperationBOMOutputEdge'
    }
    ColorSchemeEntry
    {
      Color: '$C0DCA3'
      Definition: 'RoutingConfigurator_OperationInputGroup1'
    }
    ColorSchemeEntry
    {
      Color: '$D1E9C7'
      Definition: 'RoutingConfigurator_OperationInputGroup2'
    }
    ColorSchemeEntry
    {
      Color: '$C0DCA3'
      Definition: 'RoutingConfigurator_OperationInputGroupGrouping1'
    }
    ColorSchemeEntry
    {
      Color: '$A6B8CE'
      Definition: 'RoutingConfigurator_OperationInputOutput1'
    }
    ColorSchemeEntry
    {
      Color: '$A6B8CE'
      Definition: 'RoutingConfigurator_OperationInputOutput2'
    }
    ColorSchemeEntry
    {
      Color: '$FFC1A4'
      Definition: 'RoutingConfigurator_PISPNodeInRouting1'
    }
    ColorSchemeEntry
    {
      Color: 'Orange'
      Definition: 'RoutingConfigurator_PISPNodeInRouting2'
    }
    ColorSchemeEntry
    {
      Color: '$5583A5'
      Definition: 'RoutingConfigurator_RoutingStep1'
    }
    ColorSchemeEntry
    {
      Color: '$A6B8CE'
      Definition: 'RoutingConfigurator_RoutingStep2'
    }
    ColorSchemeEntry
    {
      Color: '$66A5EB'
      Definition: 'SCVEdge'
    }
    ColorSchemeEntry
    {
      Color: '$CDCDCD'
      Definition: 'SCVNode'
    }
    ColorSchemeEntry
    {
      Color: '$FF6F6F'
      Definition: 'SCVNodeViolation'
    }
    ColorSchemeEntry
    {
      Color: '$FFFFA8'
      Definition: 'SCVRootNode'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SWF_StepDefinitionDependency_HasValidDependencyWithRespectToDueOffset'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SWF_StepDefinition_HasValidDueOffset'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SalesDemandBase_IsWithinSalesDemandQtyThreshold'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'ScenarioFolder_HasValidNumberOfScenarioInRecycleBin'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Scenario_HasValidAge'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'StockingPointInPeriod_IsPlannedWithinMaximumCapacity'
    }
    ColorSchemeEntry
    {
      Color: '$004040'
      Definition: 'StockingPointUnit'
    }
    ColorSchemeChartEntry
    {
      Definition: 'StockingPoint_InventoryLevel'
    }
    ColorSchemeChartEntry
    {
      Definition: 'StockingPoint_MaxCapacity'
    }
    ColorSchemeChartEntry
    {
      Definition: 'StockingPoint_TargetInventoryLevel'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SupplySpecification_HasFulfilledMinimum'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SupplySpecification_HasFulfilledTarget'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'SupplySpecification_HasPlannedWithinMaximum'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIComponent_CreatedNameIsValidIdentifier'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIComponent_CreatedNameNotInUse'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIComponent_DuplicateCreatedName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIField_CreatedNameIsValidIdentifier'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIField_DuplicateCreatedName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIObject_CreatedNameIsValidIdentifier'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIObject_CreatedNameNotInUse'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIObject_DuplicateCreatedName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIResponse_CreatedNameIsValidIdentifier'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TG_UIResponse_DuplicateCreatedName'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TransitionPeriod_MP_IsTransitionWithinCapacity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'TransitionType_MP_HasValidOperationInTransitionType'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Transition_MP_IsPlannedGreaterThanMinRequired'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Transition_MP_IsPlannedWithinMaxRequired'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Trip_HasConformLotSizingRequirement'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Trip_IsWithinLotSize'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'Trip_IsWithinSecondaryLotSize'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodQuantityBase_IsPlannedGreaterThanMinimumCapacity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodTimeBase_IsPlannedGreaterThanMinimumLoadThreshold'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodTime_IsFulfilledMinimumShiftPatternDuration'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodTransportBase_IsPlannedGreaterThanMinimumQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodTransportQuantity_HasNoSecondaryOverload'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriodTransportQuantity_IsPlannedGreaterThanSecondaryMinimumQuantity'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriod_HasNoOverload'
    }
    ColorSchemeEntry
    {
      Color: 'Red'
      Definition: 'UnitPeriod_HasOpenUnit'
    }
    ColorSchemeEntry
    {
      Color: '$E0E0E0'
      Definition: 'UnusedKPIWeight'
    }
  ]
}