Chameleon Applications

Chameleon Applications Commit Details

Date:2010-01-20 08:51:49 (14 years 3 months ago)
Author:Rekursor
Commit:12
Parents: 11
Message:Added tab view pane, sleep,, shutdown buttons
Changes:
M/trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.h
M/trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.mm
M/trunk/ChameleonPrefPane/English.lproj/Chameleon.xib

File differences

trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.h
1818
1919
2020
21
21
22
23
2224
2325
2426
......
4547
4648
4749
50
51
4852
4953
5054
IBOutlet NSTableColumn *mFileSystemColumn;
IBOutlet NSTableColumn *mPartitionNameColumn;
IBOutlet NSTableColumn *mPartitionIDColumn;
IBOutlet NSButton *mResetButton;
IBOutlet NSButton *mSleepButton;
IBOutlet NSButton *mShutDownButton;
IBOutlet NSButton *mRestartButton;
IBOutlet NSButton *mSwapHD01;
IBOutlet NSButton *mSwapHD02;
IBOutlet NSTextField*mStatusText;
- (void) selectDefaultPartition;
- (IBAction)onRestart: (id)sender;
- (IBAction)onShutdown: (id)sender;
- (IBAction)onSleep: (id)sender;
- (IBAction)onSwapHD: (id)sender;
- (BOOL)isUnlocked;
trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.mm
275275
276276
277277
278
278279
279280
280281
281
282
283
282
283
284284
285285
286
287
288
289
286
287
290288
291
289
292290
291
292
293
294
295
296
297
298
299
300
301
302
293303
304
305
306
307
308
294309
295310
296311
}
//--------------------------------------------------------------------------
// following DieBuch recommendation : using applescript and system events (thanks!):
- (IBAction)onRestart: (id)sender
{
NSInteger n = NSRunAlertPanel(@"Restarting OS X",
@"Are you sure you want to restart now ?",
@"OK", @"Cancel", /*ThirdButtonHere:*/nil
/*, args for a printf-style msg go here */);
@"Are you sure you want to restart your computer now ?",
@"OK", @"Cancel", nil);
if (n==1)
{
AuthorizationRef auth = [self isUnlocked] ? [[authView authorization] authorizationRef] : NULL;
// executePrivilegedCmd(auth,"/sbin/reboot");
// following DieBuch recommendation (thanks!):
executePrivilegedCmd(auth,"/usr/bin/osascript","-e 'tell application \"System Events\" to restart'");
AuthorizationRef auth = [[authView authorization] authorizationRef];
executePrivilegedCmd(auth,"/usr/bin/osascript","-e 'tell app \"System Events\" to restart'");
}
}
- (IBAction)onShutdown: (id)sender
{
NSInteger n = NSRunAlertPanel(@"Shutting Down OS X",
@"Are you sure you want to shut down your computer now ?",
@"OK", @"Cancel", /*ThirdButtonHere:*/nil
/*, args for a printf-style msg go here */);
if (n==1)
{
system("/usr/bin/osascript -e 'tell app \"System Events\" to shut down'");
}
}
- (IBAction)onSleep: (id)sender
{
system("/usr/bin/osascript -e 'tell app \"System Events\" to sleep'");
}
//--------------------------------------------------------------------------
- (void)tableViewSelectionDidChange:(NSNotification *)notification {
trunk/ChameleonPrefPane/English.lproj/Chameleon.xib
1212
1313
1414
15
15
1616
1717
1818
......
5555
5656
5757
58
58
5959
6060
61
61
62
63
64
65
66
67
68
69
70
6271
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
12093
121
122
123
124
125
126
127
94
95
96
97
98
99
100
101
102
128103
129
130
131
132
133104
134
135
136
137
105
106
107
108
138109
139
140
141
142
143
144
145
146
147
148
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
149175
150
176
151177
152
153178
154
155
156
157
158
159
160
161
162
163
164
165
166
167
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
168648
169649
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
650
651
652
653
654
655
461656
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
657
658
659
660
661
662
663
664
478665
479
480
481
482
483
484
485
486
487
488
666
667
668
669
670
671
672
673
674
489675
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
676
677
678
679
680
681
682
683
684
685
686
687
688
506689
507
508
509
510
511
512
513
514
515
516
517
518
519
520
690
521691
692
693
694
695
696
697
698
699
700
701
522702
523
524
525
526
527
528
529
530
531
532
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
533721
534722
535
536
537
538
539
540
541
542
543
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
544743
744
745
545746
546
547
548
549
550
551
747
748
749
552750
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
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
718824
719
720
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
721845
722
723
724
725
846
847
848
849
850
726851
727852
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
853
751854
752
753
754
855
856
857
755858
756859
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
860
861
862
863
864
865
866
867
777868
778
779
780
781
782
783869
784870
785871
......
830916
831917
832918
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849919
850920
851921
......
886956
887957
888958
889
959
890960
891
961
892962
893
963
894964
895965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
896990
897
991
898992
899
993
900994
901
995
902996
903997
904998
905
999
9061000
907
1001
9081002
909
1003
9101004
9111005
912
913
1006
1007
9141008
915
1009
9161010
917
1011
9181012
9191013
9201014
921
1015
9221016
923
1017
9241018
925
1019
9261020
9271021
928
929
1022
1023
9301024
931
1025
9321026
933
1027
9341028
9351029
9361030
......
9691063
9701064
9711065
972
973
974
975
9761066
977
978
1067
9791068
9801069
9811070
......
9861075
9871076
9881077
989
990
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
9911091
9921092
993
994
995
996
1093
1094
9971095
9981096
9991097
10001098
1001
1002
1003
1099
1100
1101
1102
1103
1104
1105
10041106
10051107
1006
1007
1008
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
10091121
10101122
1011
1012
1123
1124
10131125
10141126
1015
1016
1017
1018
1127
10191128
1020
1129
10211130
10221131
1023
1024
1025
1132
1133
1134
1135
1136
1137
1138
10261139
10271140
1028
1029
1141
1142
10301143
10311144
1032
1145
10331146
1034
1147
10351148
10361149
1037
1038
1150
1151
1152
1153
1154
1155
1156
10391157
10401158
1041
1159
10421160
1043
1161
10441162
10451163
1046
1047
1048
1164
1165
1166
10491167
10501168
1051
1052
1053
1169
1170
1171
1172
1173
1174
1175
10541176
10551177
1056
1057
1178
1179
1180
1181
1182
1183
1184
10581185
10591186
1060
1187
1188
1189
1190
10611191
1062
1192
10631193
10641194
1065
1066
1067
1195
1196
1197
10681198
10691199
1070
1071
1200
1201
10721202
10731203
1074
1204
1205
1206
1207
10751208
1076
1209
10771210
10781211
1079
1080
1081
1212
1213
1214
10821215
10831216
1084
1085
1086
1087
1217
1218
1219
10881220
10891221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
10901240
10911241
10921242
......
10961246
10971247
10981248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
10991263
11001264
11011265
11021266
11031267
1104
1105
1106
1268
1269
1270
11071271
11081272
1109
1110
1273
1274
1275
1276
1277
1278
1279
11111280
11121281
1113
1282
11141283
1115
1284
11161285
11171286
1118
1119
1120
1287
1288
1289
11211290
11221291
1123
1124
1292
1293
11251294
11261295
1127
1296
1297
11281298
1129
1299
11301300
11311301
1132
1133
1134
1135
1136
1137
1138
1302
1303
11391304
11401305
1141
1142
1306
11431307
1144
1308
11451309
11461310
1147
1148
1311
1312
11491313
11501314
1151
1315
11521316
1153
1317
11541318
11551319
1156
1157
1158
1320
1321
1322
11591323
11601324
1161
1162
1325
1326
1327
1328
1329
1330
1331
11631332
11641333
1165
1334
11661335
1167
1336
11681337
11691338
1170
1171
1172
1339
1340
1341
11731342
11741343
1175
1176
1344
1345
11771346
11781347
1179
1348
11801349
1181
1350
11821351
11831352
1184
1185
1186
1353
1354
1355
11871356
11881357
11891358
......
12181387
12191388
12201389
1221
1222
1223
1224
1225
1226
1227
1390
12281391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
12291410
12301411
12311412
......
12671448
12681449
12691450
1451
1452
1453
1454
1455
1456
1457
1458
12701459
12711460
12721461
12731462
1274
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
12751473
12761474
12771475
......
12821480
12831481
12841482
1285
1286
1483
1484
12871485
12881486
12891487
12901488
1489
1490
1491
1492
1493
1494
1495
1496
12911497
12921498
1499
12931500
12941501
12951502
......
13181525
13191526
13201527
1321
1528
13221529
13231530
13241531
......
13311538
13321539
13331540
1541
1542
13341543
13351544
13361545
13371546
13381547
13391548
1549
1550
13401551
13411552
13421553
......
13501561
13511562
13521563
1353
1564
1565
1566
13541567
13551568
13561569
......
13661579
13671580
13681581
1582
1583
13691584
13701585
13711586
......
13741589
13751590
13761591
1377
1592
13781593
13791594
13801595
......
18332048
18342049
18352050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
18362067
18372068
18382069
......
19312162
19322163
19332164
1934
2165
19352166
19362167
19372168
</object>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
<integer value="102"/>
<integer value="174"/>
</object>
<object class="NSArray" key="IBDocument.PluginDependencies">
<bool key="EncodedWithXMLCoder">YES</bool>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<object class="NSCustomView" id="475549282">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<object class="NSMutableArray" key="NSSubviews">
<string key="NSFrame">{{20, 6}, {628, 49}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<string key="NSClassName">SFAuthorizationView</string>
</object>
<object class="NSTabView" id="869599070">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">36</int>
<string key="NSFrame">{{-7, 53}, {683, 309}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<object class="NSMutableArray" key="NSTabViewItems">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="729666351">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">2304</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableView" id="830282976">
<reference key="NSNextResponder" ref="729666351"/>
<int key="NSvFlags">8448</int>
<string key="NSFrameSize">{471, 198}</string>
<reference key="NSSuperview" ref="729666351"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTableHeaderView" key="NSHeaderView" id="4756718">
<reference key="NSNextResponder" ref="216647119"/>
<int key="NSvFlags">256</int>
<string key="NSFrameSize">{471, 17}</string>
<reference key="NSSuperview" ref="216647119"/>
<reference key="NSTableView" ref="830282976"/>
</object>
<object class="_NSCornerView" key="NSCornerView" id="447791831">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{446, 0}, {16, 17}}</string>
<reference key="NSSuperview" ref="303493593"/>
</object>
<object class="NSMutableArray" key="NSTableColumns">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableColumn" id="1059690284">
<double key="NSWidth">36</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">3.4028234663852886e+38</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="26">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">3100</int>
</object>
<object class="NSColor" key="NSBackgroundColor" id="501427186">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">headerColor</string>
<object class="NSColor" key="NSColor" id="732916706">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
</object>
</object>
<object class="NSColor" key="NSTextColor" id="429835715">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">headerTextColor</string>
<object class="NSColor" key="NSColor" id="767481573">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MAA</bytes>
</object>
</object>
<object class="NSTabViewItem" id="210384195">
<string key="NSIdentifier">1</string>
<object class="NSView" key="NSView" id="389526238">
<reference key="NSNextResponder" ref="869599070"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTextField" id="372541434">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{498, 231}, {147, 19}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="98357325">
<int key="NSCellFlags">72482368</int>
<int key="NSCellFlags2">138544128</int>
<string key="NSContents">V1.0 b7, by Rekursor</string>
<object class="NSFont" key="NSSupport" id="26">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">3100</int>
</object>
<object class="NSImageCell" key="NSDataCell" id="694935989">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">33554432</int>
<object class="NSFont" key="NSSupport" id="930899267">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">13</double>
<int key="NSfFlags">1044</int>
<reference key="NSControlView" ref="372541434"/>
<bool key="NSDrawsBackground">YES</bool>
<object class="NSColor" key="NSBackgroundColor" id="1061310622">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlColor</string>
<object class="NSColor" key="NSColor" id="493236453">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
</object>
<int key="NSAlign">0</int>
<int key="NSScale">0</int>
<int key="NSStyle">0</int>
<bool key="NSAnimates">NO</bool>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<bool key="NSIsEditable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MC4zODc1NDY5NjczIDAuMzkwNDY2Mjc0MyAwLjQxMzA0MzQ3ODMAA</bytes>
</object>
</object>
<object class="NSTableColumn" id="415322677">
<double key="NSWidth">198</double>
<double key="NSMinWidth">40</double>
<double key="NSMaxWidth">1000</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">67110912</int>
<string key="NSContents">Name</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="360474654">
</object>
<object class="NSButton" id="1064169092">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{560, 35}, {91, 32}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="80923813">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Shutdown</string>
<object class="NSFont" key="NSSupport" id="930899267">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">13</double>
<int key="NSfFlags">1044</int>
</object>
<reference key="NSControlView" ref="1064169092"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSTextField" id="756755885">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{498, 83}, {147, 140}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="622951162">
<int key="NSCellFlags">71433728</int>
<int key="NSCellFlags2">4325376</int>
<string key="NSContents">Status</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="756755885"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="1061310622"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MC4wMDI3ODQ5NTE4IDAuMTg5OTYzMzQgMC42NjMwNDM1AA</bytes>
</object>
</object>
</object>
<object class="NSTextField" id="972202097">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{14, 242}, {146, 22}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="853186507">
<int key="NSCellFlags">68288064</int>
<int key="NSCellFlags2">272761856</int>
<string key="NSContents">Select Boot Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="972202097"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<reference key="NSBackgroundColor" ref="1061310622"/>
<object class="NSColor" key="NSTextColor" id="560934093">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlTextColor</string>
<object class="NSColor" key="NSColor" id="767481573">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5OQA</bytes>
<bytes key="NSWhite">MAA</bytes>
</object>
<reference key="NSTextColor" ref="429835715"/>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="344313926">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">67110912</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<int key="NSTextBezelStyle">1</int>
<object class="NSColor" key="NSBackgroundColor" id="694251928">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlBackgroundColor</string>
<object class="NSColor" key="NSColor" id="493236453">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
</object>
</object>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="729666351">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">2304</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableView" id="830282976">
<reference key="NSNextResponder" ref="729666351"/>
<int key="NSvFlags">8448</int>
<string key="NSFrameSize">{471, 221}</string>
<reference key="NSSuperview" ref="729666351"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTableHeaderView" key="NSHeaderView" id="4756718">
<reference key="NSNextResponder" ref="216647119"/>
<int key="NSvFlags">256</int>
<string key="NSFrameSize">{471, 17}</string>
<reference key="NSSuperview" ref="216647119"/>
<reference key="NSTableView" ref="830282976"/>
</object>
<object class="_NSCornerView" key="NSCornerView" id="447791831">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{446, 0}, {16, 17}}</string>
<reference key="NSSuperview" ref="303493593"/>
</object>
<object class="NSMutableArray" key="NSTableColumns">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSTableColumn" id="1059690284">
<double key="NSWidth">36</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">3.4028234663852886e+38</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501427186">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">headerColor</string>
<object class="NSColor" key="NSColor" id="732916706">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MQA</bytes>
</object>
</object>
<object class="NSColor" key="NSTextColor" id="429835715">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">headerTextColor</string>
<reference key="NSColor" ref="767481573"/>
</object>
</object>
<object class="NSImageCell" key="NSDataCell" id="694935989">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">33554432</int>
<reference key="NSSupport" ref="930899267"/>
<int key="NSAlign">0</int>
<int key="NSScale">0</int>
<int key="NSStyle">0</int>
<bool key="NSAnimates">NO</bool>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<bool key="NSIsEditable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
</object>
<object class="NSTableColumn" id="415322677">
<double key="NSWidth">198</double>
<double key="NSMinWidth">40</double>
<double key="NSMaxWidth">1000</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">67110912</int>
<string key="NSContents">Name</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="360474654">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5OQA</bytes>
</object>
<reference key="NSTextColor" ref="429835715"/>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="344313926">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">67110912</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<int key="NSTextBezelStyle">1</int>
<object class="NSColor" key="NSBackgroundColor" id="694251928">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlBackgroundColor</string>
<reference key="NSColor" ref="493236453"/>
</object>
<reference key="NSTextColor" ref="560934093"/>
<object class="NSArray" key="NSAllowedInputLocales">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>sr_Latn_RS</string>
<string>zh</string>
<string>ro_RO</string>
<string>be_BY</string>
<string>si_LK</string>
<string>fa_IR</string>
<string>en_BW</string>
<string>en_JM</string>
<string>ka_GE</string>
<string>zh_Hans_SG</string>
<string>mk_MK</string>
<string>en_HK</string>
<string>ar_LB</string>
<string>ii_CN</string>
<string>ru_UA</string>
<string>zh_Hant_HK</string>
<string>af</string>
<string>kl_GL</string>
<string>az_Latn</string>
<string>ar_SA</string>
<string>en_BE</string>
<string>bn_BD</string>
<string>en_MH</string>
<string>be</string>
<string>nl_NL</string>
<string>el_CY</string>
<string>az_Cyrl_AZ</string>
<string>ca</string>
<string>sr_Latn</string>
<string>om_ET</string>
<string>es_CL</string>
<string>bg</string>
<string>en_VI</string>
<string>es_VE</string>
<string>uz_Cyrl_UZ</string>
<string>fr_MC</string>
<string>am</string>
<string>zh_Hant</string>
<string>uz_Arab</string>
<string>en_GB</string>
<string>da</string>
<string>mr_IN</string>
<string>es_MX</string>
<string>es_PR</string>
<string>sq_AL</string>
<string>ar</string>
<string>fi_FI</string>
<string>bn</string>
<string>en_NA</string>
<string>de</string>
<string>as</string>
<string>cy_GB</string>
<string>en_IE</string>
<string>en_BZ</string>
<string>de_CH</string>
<string>en_US</string>
<string>sr_Latn_BA</string>
<string>te_IN</string>
<string>ar_QA</string>
<string>ar_TN</string>
<string>zh_Hans_MO</string>
<string>de_LI</string>
<string>fa</string>
<string>kw_GB</string>
<string>cs_CZ</string>
<string>hu_HU</string>
<string>zh_Hant_TW</string>
<string>uz_Latn</string>
<string>ta_IN</string>
<string>az</string>
<string>ar_EG</string>
<string>ar_SD</string>
<string>cs</string>
<string>ga</string>
<string>ar_LY</string>
<string>af_ZA</string>
<string>el</string>
<string>es_PA</string>
<string>es_CO</string>
<string>fi</string>
<string>en</string>
<string>ha</string>
<string>eo</string>
<string>gl_ES</string>
<string>cy</string>
<string>es_GT</string>
<string>ms_BN</string>
<string>ne_IN</string>
<string>he_IL</string>
<string>he</string>
<string>es</string>
<string>fo</string>
<string>en_CA</string>
<string>et</string>
<string>hr_HR</string>
<string>haw</string>
<string>gl</string>
<string>ar_SY</string>
<string>fr_SN</string>
<string>eu</string>
<string>uz_Arab_AF</string>
<string>id</string>
<string>fr</string>
<string>az_Latn_AZ</string>
<string>hi</string>
<string>zh_Hans_HK</string>
<string>ja</string>
<string>es_ES</string>
<string>ar_AE</string>
<string>uz_Latn_UZ</string>
<string>ca_ES</string>
<string>fr_BE</string>
<string>hi_IN</string>
<string>is_IS</string>
<string>ii</string>
<string>ps_AF</string>
<string>ka</string>
<string>tr_TR</string>
<string>it_CH</string>
<string>kk_Cyrl_KZ</string>
<string>gu</string>
<string>es_US</string>
<string>gv</string>
<string>en_PH</string>
<string>es_HN</string>
<string>hr</string>
<string>sv_FI</string>
<string>es_CR</string>
<string>haw_US</string>
<string>ar_MA</string>
<string>hu</string>
<string>nl_BE</string>
<string>th_TH</string>
<string>en_ZA</string>
<string>kk_Cyrl</string>
<string>is</string>
<string>it</string>
<string>es_PE</string>
<string>hy</string>
<string>de_DE</string>
<string>en_NZ</string>
<string>kk</string>
<string>kl</string>
<string>en_AU</string>
<string>pa_Guru</string>
<string>el_GR</string>
<string>km</string>
<string>kn</string>
<string>ko</string>
<string>nb</string>
<string>ar_IQ</string>
<string>es_PY</string>
<string>es_EC</string>
<string>en_US_POSIX</string>
<string>vi_VN</string>
<string>lv_LV</string>
<string>ne</string>
<string>kn_IN</string>
<string>es_AR</string>
<string>mk</string>
<string>ml</string>
<string>bg_BG</string>
<string>hy_AM_REVISED</string>
<string>kw</string>
<string>uk_UA</string>
<string>en_PK</string>
<string>pa</string>
<string>lt</string>
<string>sk_SK</string>
<string>nl</string>
<string>ur_PK</string>
<string>de_BE</string>
<string>lv</string>
<string>as_IN</string>
<string>mr</string>
<string>nn</string>
<string>en_ZW</string>
<string>fr_CA</string>
<string>ne_NP</string>
<string>ms</string>
<string>pl_PL</string>
<string>ti_ER</string>
<string>ja_JP</string>
<string>mt</string>
<string>fr_LU</string>
<string>om</string>
<string>sr_Cyrl_ME</string>
<string>en_IN</string>
<string>ga_IE</string>
<string>sw_KE</string>
<string>pl</string>
<string>kok</string>
<string>ur_IN</string>
<string>or</string>
<string>it_IT</string>
<string>hy_AM</string>
<string>ml_IN</string>
<string>en_SG</string>
<string>es_SV</string>
<string>am_ET</string>
<string>pt_BR</string>
<string>bn_IN</string>
<string>mt_MT</string>
<string>ar_KW</string>
<string>es_DO</string>
<string>pa_Arab</string>
<string>gv_GB</string>
<string>so_KE</string>
<string>ti_ET</string>
<string>ps</string>
<string>ms_MY</string>
<string>sl_SI</string>
<string>es_UY</string>
<string>en_MT</string>
<string>pt</string>
<string>sw_TZ</string>
<string>ta</string>
<string>nn_NO</string>
<string>sr_Cyrl_RS</string>
<string>si</string>
<string>te</string>
<string>ro</string>
<string>so_SO</string>
<string>sk</string>
<string>az_Cyrl</string>
<string>or_IN</string>
<string>sl</string>
<string>pa_Arab_PK</string>
<string>ru_RU</string>
<string>th</string>
<string>ar_DZ</string>
<string>ti</string>
<string>so</string>
<string>sr_Cyrl</string>
<string>es_NI</string>
<string>ha_Latn_NG</string>
<string>ru</string>
<string>en_TT</string>
<string>sq</string>
<string>fr_FR</string>
<string>sr</string>
<string>da_DK</string>
<string>es_BO</string>
<string>nb_NO</string>
<string>de_LU</string>
<string>uk</string>
<string>eu_ES</string>
<string>ar_JO</string>
<string>sv</string>
<string>so_ET</string>
<string>tr</string>
<string>sw</string>
<string>vi</string>
<string>zh_Hans_CN</string>
<string>km_KH</string>
<string>fa_AF</string>
<string>et_EE</string>
<string>ko_KR</string>
<string>pa_Guru_IN</string>
<string>sr_Latn_ME</string>
<string>so_DJ</string>
<string>ur</string>
<string>kok_IN</string>
<string>uz_Cyrl</string>
<string>zh_Hant_MO</string>
<string>zh_Hans</string>
<string>ar_YE</string>
<string>fo_FO</string>
<string>sv_SE</string>
<string>ha_Latn</string>
<string>de_AT</string>
<string>lt_LT</string>
<string>ar_OM</string>
<string>sr_Cyrl_BA</string>
<string>uz</string>
<string>ar_BH</string>
<string>id_ID</string>
<string>pt_PT</string>
<string>af_NA</string>
<string>om_KE</string>
<string>fr_CH</string>
<string>gu_IN</string>
</object>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<bool key="NSIsEditable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
</object>
<object class="NSTableColumn" id="861957185">
<double key="NSWidth">84</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">3.4028229999999999e+38</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">134219776</int>
<string key="NSContents">Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="341168767">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">134219776</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<reference key="NSBackgroundColor" ref="694251928"/>
<reference key="NSTextColor" ref="560934093"/>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
<string key="NSHeaderToolTip">Name Displayed on the bootable partion during Chameleon boot</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">141</double>
<double key="NSMinWidth">40</double>
<double key="NSMaxWidth">1000</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">File System</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="360474654"/>
<reference key="NSTextColor" ref="429835715"/>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="68552929">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<reference key="NSBackgroundColor" ref="694251928"/>
<reference key="NSTextColor" ref="560934093"/>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
</object>
</object>
<double key="NSIntercellSpacingWidth">3</double>
<double key="NSIntercellSpacingHeight">2</double>
<reference key="NSBackgroundColor" ref="694251928"/>
<object class="NSColor" key="NSGridColor">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">gridColor</string>
<object class="NSColor" key="NSColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC41AA</bytes>
</object>
</object>
<double key="NSRowHeight">32</double>
<int key="NSTvFlags">-692060160</int>
<reference key="NSDelegate"/>
<reference key="NSDataSource"/>
<int key="NSColumnAutoresizingStyle">4</int>
<int key="NSDraggingSourceMaskForLocal">15</int>
<int key="NSDraggingSourceMaskForNonLocal">0</int>
<bool key="NSAllowsTypeSelect">YES</bool>
<int key="NSTableViewDraggingDestinationStyle">0</int>
</object>
</object>
<object class="NSColor" key="NSTextColor" id="560934093">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlTextColor</string>
<reference key="NSColor" ref="767481573"/>
</object>
<object class="NSArray" key="NSAllowedInputLocales">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>sr_Latn_RS</string>
<string>zh</string>
<string>ro_RO</string>
<string>be_BY</string>
<string>si_LK</string>
<string>fa_IR</string>
<string>en_BW</string>
<string>en_JM</string>
<string>ka_GE</string>
<string>zh_Hans_SG</string>
<string>mk_MK</string>
<string>en_HK</string>
<string>ar_LB</string>
<string>ii_CN</string>
<string>ru_UA</string>
<string>zh_Hant_HK</string>
<string>af</string>
<string>kl_GL</string>
<string>az_Latn</string>
<string>ar_SA</string>
<string>en_BE</string>
<string>bn_BD</string>
<string>en_MH</string>
<string>be</string>
<string>nl_NL</string>
<string>el_CY</string>
<string>az_Cyrl_AZ</string>
<string>ca</string>
<string>sr_Latn</string>
<string>om_ET</string>
<string>es_CL</string>
<string>bg</string>
<string>en_VI</string>
<string>es_VE</string>
<string>uz_Cyrl_UZ</string>
<string>fr_MC</string>
<string>am</string>
<string>zh_Hant</string>
<string>uz_Arab</string>
<string>en_GB</string>
<string>da</string>
<string>mr_IN</string>
<string>es_MX</string>
<string>es_PR</string>
<string>sq_AL</string>
<string>ar</string>
<string>fi_FI</string>
<string>bn</string>
<string>en_NA</string>
<string>de</string>
<string>as</string>
<string>cy_GB</string>
<string>en_IE</string>
<string>en_BZ</string>
<string>de_CH</string>
<string>en_US</string>
<string>sr_Latn_BA</string>
<string>te_IN</string>
<string>ar_QA</string>
<string>ar_TN</string>
<string>zh_Hans_MO</string>
<string>de_LI</string>
<string>fa</string>
<string>kw_GB</string>
<string>cs_CZ</string>
<string>hu_HU</string>
<string>zh_Hant_TW</string>
<string>uz_Latn</string>
<string>ta_IN</string>
<string>az</string>
<string>ar_EG</string>
<string>ar_SD</string>
<string>cs</string>
<string>ga</string>
<string>ar_LY</string>
<string>af_ZA</string>
<string>el</string>
<string>es_PA</string>
<string>es_CO</string>
<string>fi</string>
<string>en</string>
<string>ha</string>
<string>eo</string>
<string>gl_ES</string>
<string>cy</string>
<string>es_GT</string>
<string>ms_BN</string>
<string>ne_IN</string>
<string>he_IL</string>
<string>he</string>
<string>es</string>
<string>fo</string>
<string>en_CA</string>
<string>et</string>
<string>hr_HR</string>
<string>haw</string>
<string>gl</string>
<string>ar_SY</string>
<string>fr_SN</string>
<string>eu</string>
<string>uz_Arab_AF</string>
<string>id</string>
<string>fr</string>
<string>az_Latn_AZ</string>
<string>hi</string>
<string>zh_Hans_HK</string>
<string>ja</string>
<string>es_ES</string>
<string>ar_AE</string>
<string>uz_Latn_UZ</string>
<string>ca_ES</string>
<string>fr_BE</string>
<string>hi_IN</string>
<string>is_IS</string>
<string>ii</string>
<string>ps_AF</string>
<string>ka</string>
<string>tr_TR</string>
<string>it_CH</string>
<string>kk_Cyrl_KZ</string>
<string>gu</string>
<string>es_US</string>
<string>gv</string>
<string>en_PH</string>
<string>es_HN</string>
<string>hr</string>
<string>sv_FI</string>
<string>es_CR</string>
<string>haw_US</string>
<string>ar_MA</string>
<string>hu</string>
<string>nl_BE</string>
<string>th_TH</string>
<string>en_ZA</string>
<string>kk_Cyrl</string>
<string>is</string>
<string>it</string>
<string>es_PE</string>
<string>hy</string>
<string>de_DE</string>
<string>en_NZ</string>
<string>kk</string>
<string>kl</string>
<string>en_AU</string>
<string>pa_Guru</string>
<string>el_GR</string>
<string>km</string>
<string>kn</string>
<string>ko</string>
<string>nb</string>
<string>ar_IQ</string>
<string>es_PY</string>
<string>es_EC</string>
<string>en_US_POSIX</string>
<string>vi_VN</string>
<string>lv_LV</string>
<string>ne</string>
<string>kn_IN</string>
<string>es_AR</string>
<string>mk</string>
<string>ml</string>
<string>bg_BG</string>
<string>hy_AM_REVISED</string>
<string>kw</string>
<string>uk_UA</string>
<string>en_PK</string>
<string>pa</string>
<string>lt</string>
<string>sk_SK</string>
<string>nl</string>
<string>ur_PK</string>
<string>de_BE</string>
<string>lv</string>
<string>as_IN</string>
<string>mr</string>
<string>nn</string>
<string>en_ZW</string>
<string>fr_CA</string>
<string>ne_NP</string>
<string>ms</string>
<string>pl_PL</string>
<string>ti_ER</string>
<string>ja_JP</string>
<string>mt</string>
<string>fr_LU</string>
<string>om</string>
<string>sr_Cyrl_ME</string>
<string>en_IN</string>
<string>ga_IE</string>
<string>sw_KE</string>
<string>pl</string>
<string>kok</string>
<string>ur_IN</string>
<string>or</string>
<string>it_IT</string>
<string>hy_AM</string>
<string>ml_IN</string>
<string>en_SG</string>
<string>es_SV</string>
<string>am_ET</string>
<string>pt_BR</string>
<string>bn_IN</string>
<string>mt_MT</string>
<string>ar_KW</string>
<string>es_DO</string>
<string>pa_Arab</string>
<string>gv_GB</string>
<string>so_KE</string>
<string>ti_ET</string>
<string>ps</string>
<string>ms_MY</string>
<string>sl_SI</string>
<string>es_UY</string>
<string>en_MT</string>
<string>pt</string>
<string>sw_TZ</string>
<string>ta</string>
<string>nn_NO</string>
<string>sr_Cyrl_RS</string>
<string>si</string>
<string>te</string>
<string>ro</string>
<string>so_SO</string>
<string>sk</string>
<string>az_Cyrl</string>
<string>or_IN</string>
<string>sl</string>
<string>pa_Arab_PK</string>
<string>ru_RU</string>
<string>th</string>
<string>ar_DZ</string>
<string>ti</string>
<string>so</string>
<string>sr_Cyrl</string>
<string>es_NI</string>
<string>ha_Latn_NG</string>
<string>ru</string>
<string>en_TT</string>
<string>sq</string>
<string>fr_FR</string>
<string>sr</string>
<string>da_DK</string>
<string>es_BO</string>
<string>nb_NO</string>
<string>de_LU</string>
<string>uk</string>
<string>eu_ES</string>
<string>ar_JO</string>
<string>sv</string>
<string>so_ET</string>
<string>tr</string>
<string>sw</string>
<string>vi</string>
<string>zh_Hans_CN</string>
<string>km_KH</string>
<string>fa_AF</string>
<string>et_EE</string>
<string>ko_KR</string>
<string>pa_Guru_IN</string>
<string>sr_Latn_ME</string>
<string>so_DJ</string>
<string>ur</string>
<string>kok_IN</string>
<string>uz_Cyrl</string>
<string>zh_Hant_MO</string>
<string>zh_Hans</string>
<string>ar_YE</string>
<string>fo_FO</string>
<string>sv_SE</string>
<string>ha_Latn</string>
<string>de_AT</string>
<string>lt_LT</string>
<string>ar_OM</string>
<string>sr_Cyrl_BA</string>
<string>uz</string>
<string>ar_BH</string>
<string>id_ID</string>
<string>pt_PT</string>
<string>af_NA</string>
<string>om_KE</string>
<string>fr_CH</string>
<string>gu_IN</string>
</object>
<string key="NSFrame">{{1, 17}, {471, 221}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<bool key="NSIsEditable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
</object>
<object class="NSTableColumn" id="861957185">
<double key="NSWidth">84</double>
<double key="NSMinWidth">10</double>
<double key="NSMaxWidth">3.4028229999999999e+38</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">134219776</int>
<string key="NSContents">Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
<object class="NSScroller" id="681132672">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{446, 17}, {15, 142}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.9242424242424242</double>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="341168767">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">134219776</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<reference key="NSBackgroundColor" ref="694251928"/>
<reference key="NSTextColor" ref="560934093"/>
<object class="NSScroller" id="94292441">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{1, 159}, {411, 15}}</string>
<reference key="NSSuperview" ref="303493593"/>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99577167019027479</double>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
<string key="NSHeaderToolTip">Name Displayed on the bootable partion during Chameleon boot</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">141</double>
<double key="NSMinWidth">40</double>
<double key="NSMaxWidth">1000</double>
<object class="NSTableHeaderCell" key="NSHeaderCell">
<int key="NSCellFlags">75628096</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">File System</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="360474654"/>
<reference key="NSTextColor" ref="429835715"/>
<object class="NSClipView" id="216647119">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">2304</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="4756718"/>
</object>
<string key="NSFrame">{{1, 0}, {471, 17}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="4756718"/>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<object class="NSTextFieldCell" key="NSDataCell" id="68552929">
<int key="NSCellFlags">69336641</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="830282976"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<reference key="NSBackgroundColor" ref="694251928"/>
<reference key="NSTextColor" ref="560934093"/>
</object>
<int key="NSResizingMask">3</int>
<bool key="NSIsResizeable">YES</bool>
<reference key="NSTableView" ref="830282976"/>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{17, 11}, {473, 239}}</string>
<reference key="NSSuperview" ref="389526238"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSsFlags">562</int>
<reference key="NSVScroller" ref="681132672"/>
<reference key="NSHScroller" ref="94292441"/>
<reference key="NSContentView" ref="729666351"/>
<reference key="NSHeaderClipView" ref="216647119"/>
<reference key="NSCornerView" ref="447791831"/>
<bytes key="NSScrollAmts">QSAAAEEgAABCCAAAQggAAA</bytes>
</object>
<double key="NSIntercellSpacingWidth">3</double>
<double key="NSIntercellSpacingHeight">2</double>
<reference key="NSBackgroundColor" ref="694251928"/>
<object class="NSColor" key="NSGridColor">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">gridColor</string>
<object class="NSColor" key="NSColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC41AA</bytes>
<object class="NSButton" id="1032245036">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{493, 3}, {158, 32}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="41430622">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Restart</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="1032245036"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<double key="NSRowHeight">32</double>
<int key="NSTvFlags">-692060160</int>
<reference key="NSDelegate"/>
<reference key="NSDataSource"/>
<int key="NSColumnAutoresizingStyle">4</int>
<int key="NSDraggingSourceMaskForLocal">15</int>
<int key="NSDraggingSourceMaskForNonLocal">0</int>
<bool key="NSAllowsTypeSelect">YES</bool>
<int key="NSTableViewDraggingDestinationStyle">0</int>
<object class="NSButton" id="158463244">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{493, 35}, {67, 32}}</string>
<reference key="NSSuperview" ref="389526238"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="556998537">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Sleep</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="158463244"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{10, 33}, {663, 263}}</string>
<reference key="NSSuperview" ref="869599070"/>
</object>
<string key="NSFrame">{{1, 17}, {471, 198}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
<string key="NSLabel">Select Boot Partition</string>
<reference key="NSColor" ref="1061310622"/>
<reference key="NSTabView" ref="869599070"/>
</object>
<object class="NSScroller" id="681132672">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{446, 17}, {15, 142}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.9242424242424242</double>
</object>
<object class="NSScroller" id="94292441">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">-2147483392</int>
<string key="NSFrame">{{1, 159}, {411, 15}}</string>
<reference key="NSSuperview" ref="303493593"/>
<bool key="NSEnabled">YES</bool>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99577167019027479</double>
</object>
<object class="NSClipView" id="216647119">
<reference key="NSNextResponder" ref="303493593"/>
<int key="NSvFlags">2304</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="4756718"/>
</object>
<string key="NSFrame">{{1, 0}, {471, 17}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="4756718"/>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{20, 104}, {473, 216}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSsFlags">690</int>
<reference key="NSVScroller" ref="681132672"/>
<reference key="NSHScroller" ref="94292441"/>
<reference key="NSContentView" ref="729666351"/>
<reference key="NSHeaderClipView" ref="216647119"/>
<reference key="NSCornerView" ref="447791831"/>
<bytes key="NSScrollAmts">QSAAAEEgAABCCAAAQggAAA</bytes>
</object>
<object class="NSTextField" id="972202097">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{17, 312}, {146, 22}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="853186507">
<int key="NSCellFlags">68288064</int>
<int key="NSCellFlags2">272761856</int>
<string key="NSContents">Select Boot Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="972202097"/>
<bool key="NSDrawsBackground">YES</bool>
<int key="NSTextBezelStyle">1</int>
<object class="NSColor" key="NSBackgroundColor" id="1061310622">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">controlColor</string>
<reference key="NSColor" ref="493236453"/>
</object>
<reference key="NSTextColor" ref="560934093"/>
</object>
</object>
<object class="NSButton" id="1064169092">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{495, 96}, {159, 32}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="80923813">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Restart Now</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="1064169092"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSCustomView" id="475549282">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{20, 20}, {628, 49}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<string key="NSClassName">SFAuthorizationView</string>
</object>
<object class="NSTextField" id="372541434">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{140, 340}, {387, 19}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="98357325">
<int key="NSCellFlags">72482368</int>
<int key="NSCellFlags2">138544128</int>
<string key="NSContents">Chameleon System Preferences Panel (Version 1.0 beta 6) by Rekursor</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="372541434"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="1061310622"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MC4wMDI3ODQ5NTE4IDAuMTg5OTYzMzQgMC42NjMwNDM1AA</bytes>
</object>
</object>
</object>
<object class="NSTextField" id="756755885">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{20, 77}, {628, 19}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="622951162">
<int key="NSCellFlags">72482368</int>
<int key="NSCellFlags2">4326400</int>
<string key="NSContents">Status</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="756755885"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="1061310622"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">1</int>
<bytes key="NSRGB">MC4wMDI3ODQ5NTE4IDAuMTg5OTYzMzQgMC42NjMwNDM1AA</bytes>
</object>
</object>
</object>
<object class="NSBox" id="714010888">
<reference key="NSNextResponder" ref="1037298196"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="676327062">
<reference key="NSNextResponder" ref="714010888"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="1058967236">
<reference key="NSNextResponder" ref="676327062"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{12, 156}, {123, 18}}</string>
<reference key="NSSuperview" ref="676327062"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="261674543">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">131072</int>
<string key="NSContents">Swap disks 0&lt;-&gt;1</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="1058967236"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
<object class="NSCustomResource" key="NSNormalImage" id="712996683">
<string key="NSClassName">NSImage</string>
<string key="NSResourceName">NSSwitch</string>
<object class="NSTabViewItem" id="1039429426">
<string key="NSIdentifier">2</string>
<object class="NSView" key="NSView" id="451295758">
<nil key="NSNextResponder"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="77485843">
<reference key="NSNextResponder" ref="451295758"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="173833403">
<reference key="NSNextResponder" ref="77485843"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="1033017990">
<reference key="NSNextResponder" ref="173833403"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{12, 41}, {123, 18}}</string>
<reference key="NSSuperview" ref="173833403"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="1062772183">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">131072</int>
<string key="NSContents">Swap disks 0&lt;-&gt;1</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="1033017990"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
<object class="NSCustomResource" key="NSNormalImage" id="183935025">
<string key="NSClassName">NSImage</string>
<string key="NSResourceName">NSSwitch</string>
</object>
<object class="NSButtonImageSource" key="NSAlternateImage" id="731537593">
<string key="NSImageName">NSSwitch</string>
</object>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSButton" id="249705860">
<reference key="NSNextResponder" ref="173833403"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{12, 21}, {123, 18}}</string>
<reference key="NSSuperview" ref="173833403"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="277682141">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">131072</int>
<string key="NSContents">Swap disks 0&lt;-&gt;2</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="249705860"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
<reference key="NSNormalImage" ref="183935025"/>
<reference key="NSAlternateImage" ref="731537593"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {151, 75}}</string>
<reference key="NSSuperview" ref="77485843"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<object class="NSButtonImageSource" key="NSAlternateImage" id="731537593">
<string key="NSImageName">NSSwitch</string>
<string key="NSFrame">{{15, 173}, {153, 91}}</string>
<reference key="NSSuperview" ref="451295758"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<object class="NSTextFieldCell" key="NSTitleCell">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Boot Selector Fixes</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxAA</bytes>
</object>
</object>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
<reference key="NSContentView" ref="173833403"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<object class="NSButton" id="852398609">
<reference key="NSNextResponder" ref="676327062"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{12, 136}, {123, 18}}</string>
<reference key="NSSuperview" ref="676327062"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="716465253">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">131072</int>
<string key="NSContents">Swap disks 0&lt;-&gt;2</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSControlView" ref="852398609"/>
<int key="NSButtonFlags">1211912703</int>
<int key="NSButtonFlags2">2</int>
<reference key="NSNormalImage" ref="712996683"/>
<reference key="NSAlternateImage" ref="731537593"/>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<string key="NSFrame">{{10, 33}, {663, 263}}</string>
</object>
<string key="NSFrame">{{1, 1}, {151, 190}}</string>
<reference key="NSSuperview" ref="714010888"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSLabel">Settings</string>
<reference key="NSColor" ref="1061310622"/>
<reference key="NSTabView" ref="869599070"/>
</object>
</object>
<string key="NSFrame">{{498, 128}, {153, 206}}</string>
<reference key="NSSuperview" ref="1037298196"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<object class="NSTextFieldCell" key="NSTitleCell">
<int key="NSCellFlags">67239424</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Fixes</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxAA</bytes>
</object>
<reference key="NSSelectedTabViewItem" ref="210384195"/>
<reference key="NSFont" ref="930899267"/>
<int key="NSTvFlags">0</int>
<bool key="NSAllowTruncatedLabels">YES</bool>
<bool key="NSDrawsBackground">YES</bool>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="389526238"/>
</object>
<reference key="NSContentView" ref="676327062"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrameSize">{668, 368}</string>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mResetButton</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="1064169092"/>
</object>
<int key="connectionID">124</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onRestart:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="80923813"/>
</object>
<int key="connectionID">125</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mPartitionNameColumn</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="415322677"/>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mOptions</string>
<string key="label">mPartitionImgColumn</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="714010888"/>
<reference key="destination" ref="1059690284"/>
</object>
<int key="connectionID">147</int>
<int key="connectionID">161</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onSwapHD:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="249705860"/>
</object>
<int key="connectionID">184</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onSwapHD:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="1033017990"/>
</object>
<int key="connectionID">185</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onRestart:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="41430622"/>
</object>
<int key="connectionID">188</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mSwapHD01</string>
<string key="label">mSleepButton</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="1058967236"/>
<reference key="destination" ref="158463244"/>
</object>
<int key="connectionID">150</int>
<int key="connectionID">192</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mSwapHD02</string>
<string key="label">mShutDownButton</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="852398609"/>
<reference key="destination" ref="1064169092"/>
</object>
<int key="connectionID">154</int>
<int key="connectionID">193</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onSwapHD:</string>
<object class="IBOutletConnection" key="connection">
<string key="label">mRestartButton</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="852398609"/>
<reference key="destination" ref="1032245036"/>
</object>
<int key="connectionID">156</int>
<int key="connectionID">194</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onSwapHD:</string>
<string key="label">onSleep:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="1058967236"/>
<reference key="destination" ref="158463244"/>
</object>
<int key="connectionID">157</int>
<int key="connectionID">195</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mPartitionImgColumn</string>
<object class="IBActionConnection" key="connection">
<string key="label">onShutdown:</string>
<reference key="source" ref="513945847"/>
<reference key="destination" ref="1059690284"/>
<reference key="destination" ref="1064169092"/>
</object>
<int key="connectionID">161</int>
<int key="connectionID">197</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<reference key="object" ref="1037298196"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="714010888"/>
<reference ref="972202097"/>
<reference ref="372541434"/>
<reference ref="303493593"/>
<reference ref="475549282"/>
<reference ref="756755885"/>
<reference ref="1064169092"/>
<reference ref="869599070"/>
</object>
<reference key="parent" ref="660800786"/>
</object>
<string key="objectName">Application</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">99</int>
<reference key="object" ref="303493593"/>
<int key="objectID">112</int>
<reference key="object" ref="513945847"/>
<reference key="parent" ref="0"/>
<string key="objectName">ChameleonPrefPane</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">136</int>
<reference key="object" ref="475549282"/>
<reference key="parent" ref="1037298196"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">172</int>
<reference key="object" ref="869599070"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
<reference ref="210384195"/>
<reference ref="1039429426"/>
</object>
<reference key="parent" ref="1037298196"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
<int key="objectID">173</int>
<reference key="object" ref="210384195"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="389526238"/>
</object>
<reference key="parent" ref="869599070"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
<int key="objectID">174</int>
<reference key="object" ref="389526238"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
<reference ref="972202097"/>
<reference ref="372541434"/>
<reference ref="756755885"/>
<reference ref="1064169092"/>
<reference ref="1032245036"/>
<reference ref="158463244"/>
</object>
<reference key="parent" ref="210384195"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<int key="objectID">175</int>
<reference key="object" ref="1039429426"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
<reference ref="451295758"/>
</object>
<reference key="parent" ref="303493593"/>
<reference key="parent" ref="869599070"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
<int key="objectID">176</int>
<reference key="object" ref="451295758"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="77485843"/>
</object>
<reference key="parent" ref="1039429426"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">104</int>
<reference key="object" ref="484280519"/>
<int key="objectID">138</int>
<reference key="object" ref="372541434"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="68552929"/>
<reference ref="98357325"/>
</object>
<reference key="parent" ref="830282976"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">105</int>
<reference key="object" ref="415322677"/>
<int key="objectID">139</int>
<reference key="object" ref="98357325"/>
<reference key="parent" ref="372541434"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">110</int>
<reference key="object" ref="1064169092"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="344313926"/>
<reference ref="80923813"/>
</object>
<reference key="parent" ref="830282976"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">106</int>
<reference key="object" ref="344313926"/>
<reference key="parent" ref="415322677"/>
<int key="objectID">111</int>
<reference key="object" ref="80923813"/>
<reference key="parent" ref="1064169092"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
<int key="objectID">140</int>
<reference key="object" ref="756755885"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="622951162"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">108</int>
<reference key="object" ref="972202097"/>
<int key="objectID">141</int>
<reference key="object" ref="622951162"/>
<reference key="parent" ref="756755885"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">99</int>
<reference key="object" ref="303493593"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="853186507"/>
<reference ref="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="1037298196"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">109</int>
<reference key="object" ref="853186507"/>
<reference key="parent" ref="972202097"/>
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">110</int>
<reference key="object" ref="1064169092"/>
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="80923813"/>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="1037298196"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">111</int>
<reference key="object" ref="80923813"/>
<reference key="parent" ref="1064169092"/>
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">112</int>
<reference key="object" ref="513945847"/>
<reference key="parent" ref="0"/>
<string key="objectName">ChameleonPrefPane</string>
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">158</int>
<reference key="object" ref="1059690284"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="694935989"/>
</object>
<reference key="parent" ref="830282976"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">104</int>
<reference key="object" ref="484280519"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="68552929"/>
</object>
<reference key="parent" ref="830282976"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<reference key="parent" ref="830282976"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">105</int>
<reference key="object" ref="415322677"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="344313926"/>
</object>
<reference key="parent" ref="830282976"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">106</int>
<reference key="object" ref="344313926"/>
<reference key="parent" ref="415322677"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">129</int>
<reference key="object" ref="341168767"/>
<reference key="parent" ref="861957185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">136</int>
<reference key="object" ref="475549282"/>
<reference key="parent" ref="1037298196"/>
<int key="objectID">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">138</int>
<reference key="object" ref="372541434"/>
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">108</int>
<reference key="object" ref="972202097"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="98357325"/>
<reference ref="853186507"/>
</object>
<reference key="parent" ref="1037298196"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">139</int>
<reference key="object" ref="98357325"/>
<reference key="parent" ref="372541434"/>
<int key="objectID">109</int>
<reference key="object" ref="853186507"/>
<reference key="parent" ref="972202097"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">140</int>
<reference key="object" ref="756755885"/>
<int key="objectID">179</int>
<reference key="object" ref="77485843"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="622951162"/>
<reference ref="249705860"/>
<reference ref="1033017990"/>
</object>
<reference key="parent" ref="1037298196"/>
<reference key="parent" ref="451295758"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">141</int>
<reference key="object" ref="622951162"/>
<reference key="parent" ref="756755885"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">145</int>
<reference key="object" ref="714010888"/>
<int key="objectID">180</int>
<reference key="object" ref="249705860"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1058967236"/>
<reference ref="852398609"/>
<reference ref="277682141"/>
</object>
<reference key="parent" ref="1037298196"/>
<reference key="parent" ref="77485843"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">143</int>
<reference key="object" ref="1058967236"/>
<int key="objectID">181</int>
<reference key="object" ref="1033017990"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="261674543"/>
<reference ref="1062772183"/>
</object>
<reference key="parent" ref="714010888"/>
<reference key="parent" ref="77485843"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">144</int>
<reference key="object" ref="261674543"/>
<reference key="parent" ref="1058967236"/>
<int key="objectID">182</int>
<reference key="object" ref="1062772183"/>
<reference key="parent" ref="1033017990"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">151</int>
<reference key="object" ref="852398609"/>
<int key="objectID">183</int>
<reference key="object" ref="277682141"/>
<reference key="parent" ref="249705860"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">186</int>
<reference key="object" ref="1032245036"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="716465253"/>
<reference ref="41430622"/>
</object>
<reference key="parent" ref="714010888"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">152</int>
<reference key="object" ref="716465253"/>
<reference key="parent" ref="852398609"/>
<int key="objectID">187</int>
<reference key="object" ref="41430622"/>
<reference key="parent" ref="1032245036"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">158</int>
<reference key="object" ref="1059690284"/>
<int key="objectID">189</int>
<reference key="object" ref="158463244"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="694935989"/>
<reference ref="556998537"/>
</object>
<reference key="parent" ref="830282976"/>
<reference key="parent" ref="389526238"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
<int key="objectID">190</int>
<reference key="object" ref="556998537"/>
<reference key="parent" ref="158463244"/>
</object>
</object>
</object>
<string>139.IBPluginDependency</string>
<string>140.IBPluginDependency</string>
<string>141.IBPluginDependency</string>
<string>143.IBAttributePlaceholdersKey</string>
<string>143.IBPluginDependency</string>
<string>144.IBPluginDependency</string>
<string>145.IBPluginDependency</string>
<string>151.IBAttributePlaceholdersKey</string>
<string>151.IBPluginDependency</string>
<string>152.IBPluginDependency</string>
<string>158.IBPluginDependency</string>
<string>160.IBPluginDependency</string>
<string>172.IBPluginDependency</string>
<string>173.IBPluginDependency</string>
<string>174.IBPluginDependency</string>
<string>175.IBPluginDependency</string>
<string>176.IBPluginDependency</string>
<string>179.IBPluginDependency</string>
<string>180.IBAttributePlaceholdersKey</string>
<string>180.IBPluginDependency</string>
<string>181.IBAttributePlaceholdersKey</string>
<string>181.IBPluginDependency</string>
<string>182.IBPluginDependency</string>
<string>183.IBPluginDependency</string>
<string>186.IBAttributePlaceholdersKey</string>
<string>186.IBPluginDependency</string>
<string>187.IBPluginDependency</string>
<string>189.IBAttributePlaceholdersKey</string>
<string>189.IBPluginDependency</string>
<string>190.IBPluginDependency</string>
<string>6.IBPluginDependency</string>
<string>6.ImportedFromIB2</string>
<string>99.IBAttributePlaceholdersKey</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<object class="NSMutableDictionary">
<string key="NS.key.0">ToolTip</string>
<object class="IBToolTipAttribute" key="NS.object.0">
<string key="name">ToolTip</string>
<reference key="object" ref="1058967236"/>
<reference key="object" ref="249705860"/>
<string key="toolTip">Swap disks indexes 0&lt;-&gt;2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence</string>
</object>
</object>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<object class="NSMutableDictionary">
<string key="NS.key.0">ToolTip</string>
<object class="IBToolTipAttribute" key="NS.object.0">
<string key="name">ToolTip</string>
<reference key="object" ref="1033017990"/>
<string key="toolTip">Swap disks indexes 0&lt;-&gt;1, use this option if your disk sequence in osx does not match the chameleon boot disk sequence</string>
</object>
</object>
<string key="NS.key.0">ToolTip</string>
<object class="IBToolTipAttribute" key="NS.object.0">
<string key="name">ToolTip</string>
<reference key="object" ref="852398609"/>
<string key="toolTip">Swap disks indexes 0&lt;-&gt;2, use this option if your disk sequence in osx does not match the chameleon boot disk sequence</string>
<reference key="object" ref="1032245036"/>
<string key="toolTip">Restarts the sytem</string>
</object>
</object>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<object class="NSMutableDictionary">
<string key="NS.key.0">ToolTip</string>
<object class="IBToolTipAttribute" key="NS.object.0">
<string key="name">ToolTip</string>
<reference key="object" ref="158463244"/>
<string key="toolTip">Restarts the sytem</string>
</object>
</object>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<integer value="1"/>
<object class="NSMutableDictionary">
<string key="NS.key.0">ToolTip</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">161</int>
<int key="maxID">197</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>onRestart:</string>
<string>onShutdown:</string>
<string>onSleep:</string>
<string>onSwapHD:</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>id</string>
<string>id</string>
<string>id</string>
<string>id</string>
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string>mPartitionImgColumn</string>
<string>mPartitionNameColumn</string>
<string>mPartitionsTable</string>
<string>mResetButton</string>
<string>mRestartButton</string>
<string>mShutDownButton</string>
<string>mSleepButton</string>
<string>mStatusText</string>
<string>mSwapHD01</string>
<string>mSwapHD02</string>
<string>NSTableColumn</string>
<string>NSTableView</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSButton</string>
<string>NSTextField</string>
<string>NSButton</string>
<string>NSButton</string>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">ChameleonPrefPane.h</string>
<string key="minorKey">../../../../../devl/OSX/chameleonApplications/trunk/ChameleonPrefPane/Sources/ChameleonPrefPane.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSTabView</string>
<string key="superclassName">NSView</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">AppKit.framework/Headers/NSTabView.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSTabViewItem</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">AppKit.framework/Headers/NSTabViewItem.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSTableColumn</string>
<string key="superclassName">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<integer value="1050" key="NS.object.0"/>
<integer value="1060" key="NS.object.0"/>
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3</string>

Archive Download the corresponding diff file

Revision: 12