Chameleon Applications

Chameleon Applications Commit Details

Date:2010-02-03 18:58:31 (14 years 1 month ago)
Author:Rekursor
Commit:106
Parents: 105
Message:Released 2.0-RC4, now features acpi tables extraction.
Changes:
A/trunk/ChameleonPrefPane/ibexport_all
A/trunk/ChameleonPrefPane/English.lproj/Chameleon.strings
A/trunk/ChameleonPrefPane/Resources/extractAcpi.sh
A/trunk/ChameleonPrefPane/Resources/iasl
M/trunk/ChameleonPrefPane/German.lproj/Chameleon.strings
M/trunk/ChameleonPrefPane/Info.plist
M/trunk/ChameleonPrefPane/Italian.lproj/Chameleon.strings
M/trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.mm
M/trunk/ChameleonPrefPane/Sources/EfiInjectController.mm
M/trunk/ChameleonPrefPane/French.lproj/Localizable.strings
M/trunk/ChameleonPrefPane/French.lproj/Chameleon.xib
M/trunk/ChameleonPrefPane/German.lproj/Localizable.strings
M/trunk/ChameleonPrefPane/Sources/SmbiosController.h
M/trunk/ChameleonPrefPane/German.lproj/Chameleon.xib
M/trunk/ChameleonPrefPane/Sources/string_util.h
M/trunk/ChameleonPrefPane/Spanish.lproj/Chameleon.strings
M/trunk/ChameleonPrefPane/Italian.lproj/Localizable.strings
M/trunk/ChameleonPrefPane/Italian.lproj/Chameleon.xib
M/trunk/ChameleonPrefPane/Sources/file_util.h
M/trunk/ChameleonPrefPane/English.lproj/Localizable.strings
M/trunk/ChameleonPrefPane/English.lproj/Chameleon.xib
M/branches/diebuche/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj
M/trunk/ChameleonPrefPane/Sources/SmbiosController.mm
M/trunk/ChameleonPrefPane/bin/version
M/trunk/ChameleonPrefPane/Spanish.lproj/Localizable.strings
M/trunk/ChameleonPrefPane/bin/OSX105/Chameleon.zip
M/trunk/ChameleonPrefPane/Sources/TableViewsController.mm
M/trunk/ChameleonPrefPane/bin/OSX106/Chameleon.zip
M/trunk/ChameleonPrefPane/Spanish.lproj/Chameleon.xib
M/trunk/ChameleonPrefPane/Sources/string_util.cpp
M/trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.h
M/trunk/ChameleonPrefPane/French.lproj/Chameleon.strings

File differences

trunk/ChameleonPrefPane/Sources/string_util.h
1111
1212
1313
14
15
16
17
18
19
20
21
22
23
1424
1525
1626
......
6070
6171
6272
63
64
65
66
67
68
69
7073
#include <list>
/**
* String Tokenizer
* In: src string and separator
* Out: a list of string tokens
*/
std::list<std::string> tokenize(const std::string& src, const std::string& sep=" ");
/** 'in place' replace_all occurences of sToFind by sToReplace in a s string, return s */
std::string& replace_all(std::string &s, const std::string &sToFind, const std::string &sToReplace);
/**
* trim the space (or any substring) chars on the right of a string
*/
inline std::string trim_right(const std::string &source , const std::string& substr = " ")
return trim_left( trim_right( src , substr) , substr );
}
/**
* String Tokenizer
* In: src string and separator
* Out: a list of string tokens
*/
std::list<std::string> tokenize(const std::string& src, const std::string& sep=" ");
#endif
trunk/ChameleonPrefPane/Sources/file_util.h
88
99
1010
11
1112
1213
1314
#ifndef __CHFILE_UTIL_H
#define __CHFILE_UTIL_H
#include <sys/stat.h>
#include <string>
/**
* Check whether file exists:
trunk/ChameleonPrefPane/Sources/SmbiosController.mm
66
77
88
9
910
10
1111
1212
1313
......
3434
3535
3636
37
3738
3839
3940
......
6263
6364
6465
65
66
66
67
6768
6869
6970
7071
71
72
7273
7374
7475
75
76
76
77
7778
79
80
81
82
83
84
85
86
87
88
7889
7990
8091
//
#import "SmbiosController.h"
#import <ApplicationServices/ApplicationServices.h>
static SmbiosController *gInstance = NULL;
@implementation SmbiosController
- (void) refreshLockStates
{
[PreferencesControllerBase refreshLockState: mEditSmbios];
// [PreferencesControllerBase refreshLockState: mExtractACPITables ];
}
//--------------------------------------------------------------------------
if (smbiosPath.length()==0 || auth==nil) return;
// give write temporary write rights to the file
//std::string args = " 0777 "+ smbiosPath;
//if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str())) return;
//std::string args = " 0777 "+ smbiosPath;
//if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str())) return;
// edit the file
std::string cmd = "/usr/bin/open " + smbiosPath;
system(cmd.c_str());
// [ self executeTaskAndWaitForTermination: [[NSString alloc] initWithUTF8String:cmd.c_str()] ];
// Remove temporary write
//args = " 0644 "+ smbiosPath;
//if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str())) return;
//args = " 0644 "+ smbiosPath;
//if(!executePrivilegedCmd(auth, "/bin/chmod", args.c_str())) return;
}
else if(sender == mExtractACPITables)
{
std::string cmd = "/bin/bash ";
std::string path = [[self getResourcePath:@"extractAcpi" ofType:@"sh"] UTF8String];
cmd += path;
//[self executeTaskAndWaitForTermination: [[NSString alloc] initWithUTF8String:path.c_str()] ];
cmd += " && /usr/bin/open ${HOME}/Desktop/ACPI";
system(cmd.c_str());
}
else
[self handleSender: sender];
}
trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.mm
388388
389389
390390
391
392
393
394
395
391396
392397
398
393399
394400
395401
- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath
{
return [ self executeTaskAndWaitForTermination:taskPath withArgs:nil ];
}
- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath withArgs:(NSArray*) args
{
NSTask *task = [[NSTask alloc] init];
[task setLaunchPath:taskPath];
if (args) [task setArguments: args];
[task launch];
[task waitUntilExit]; // wait for process termination
trunk/ChameleonPrefPane/Sources/EfiInjectController.mm
3333
3434
3535
36
3637
3738
3839
- (void) refreshLockStates
{
// automatic, nothing to do
[PreferencesControllerBase refreshLockState: mCurrentGfxInjection ];
}
//--------------------------------------------------------------------------
trunk/ChameleonPrefPane/Sources/TableViewsController.mm
4949
5050
5151
52
5352
5453
54
5555
5656
5757
{@"Boot_Setup",PaneBootSetup, &mImgPaneBootSetup},
{@"Boot_Flags", PaneBootFlags, &mImgPaneBootFlags},
{@"Peripherals", PanePeripherals, &mImgPanePeripherals},
{@"Advanced", PaneAdvanced, &mImgPaneAdvanced},
{@"Efi_Inject", PaneEfiInject, &mImgPaneEfiInject},
{@"Bios", PaneSmbios, &mImgPaneSmbios},
{@"Advanced", PaneAdvanced, &mImgPaneAdvanced},
{@"About", PaneAbout, &mImgPaneAbout}
};
const int iMenuListSize = sizeof(sMenuList)/ sizeof(MenuEntry);
trunk/ChameleonPrefPane/Sources/string_util.cpp
3232
3333
3434
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
return ret;
}
std::string& replace_all(std::string &s, const std::string &sToFind, const std::string &sToReplace)
{
if(sToReplace.empty()) return s;
std::string::size_type b = 0;
for (;;)
{
b = s.find(sToFind, b);
if (b == s.npos) break;
s.replace(b, sToFind.size(), sToReplace);
b += sToReplace.size();
}
return s;
}
trunk/ChameleonPrefPane/Sources/PreferencesControllerBase.h
5959
6060
6161
62
6263
6364
6465
// Execute a task and wait for the process to terminate
- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath;
- (bool) executeTaskAndWaitForTermination: (NSString*)taskPath withArgs:(NSArray*) args;
// Open a file selection modal dialog
- (NSString*) selectFileWithFileTypes:(NSString*) dir withName: (NSString*) name withTypes:(NSArray*) fileTypes;
trunk/ChameleonPrefPane/Sources/SmbiosController.h
1515
1616
1717
18
1819
1920
2021
@interface SmbiosController : PreferencesControllerBase <GroupControllerProtocol>
{
IBOutlet NSButton*mEditSmbios;
IBOutlet NSButton*mExtractACPITables;
}
- (IBAction) onCheckButtonChange: (NSButton*) sender;
trunk/ChameleonPrefPane/ibexport_all
1
2
3
4
./ibexport German.lproj/Chameleon
./ibexport Italian.lproj/Chameleon
./ibexport French.lproj/Chameleon
./ibexport Spanish.lproj/Chameleon
trunk/ChameleonPrefPane/Info.plist
2323
2424
2525
26
26
2727
2828
2929
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.0.0 RC3</string>
<string>2.0.0 RC4</string>
<key>NSMainNibFile</key>
<string>Chameleon</string>
<key>NSPrefPaneIconFile</key>
trunk/ChameleonPrefPane/French.lproj/Chameleon.xib
181181
182182
183183
184
184
185185
186
186
187187
188188
189189
......
296296
297297
298298
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
299872
300873
301874
302875
303876
304
877
305878
306879
307880
......
310883
311884
312885
313
314
315
316
317
318
886
319887
320888
321889
......
398966
399967
400968
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
966969
967970
968971
......
11431146
11441147
11451148
1146
1149
11471150
11481151
11491152
......
12781281
12791282
12801283
1281
1282
1283
1284
1285
1284
12861285
12871286
12881287
......
16911690
16921691
16931692
1694
1693
1694
1695
1696
1697
16951698
16961699
16971700
......
28982901
28992902
29002903
2901
29022904
29032905
29042906
......
30363038
30373039
30383040
3039
30403041
30413042
30423043
......
37383739
37393740
37403741
3741
3742
37423743
37433744
37443745
......
38583859
38593860
38603861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
38613886
38623887
38633888
......
40964121
40974122
40984123
4099
4124
41004125
41014126
41024127
......
58725897
58735898
58745899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
58755916
58765917
58775918
......
60846125
60856126
60866127
6087
60886128
60896129
60906130
......
60956135
60966136
60976137
6138
60986139
60996140
61006141
......
61276168
61286169
61296170
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
62346171
62356172
62366173
......
70536990
70546991
70556992
6993
70566994
70576995
70586996
......
77607698
77617699
77627700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
77637819
77647820
77657821
......
78557911
78567912
78577913
7914
7915
78587916
78597917
78607918
......
83118369
83128370
83138371
8314
8372
83158373
83168374
8317
8375
83188376
83198377
83208378
......
83248382
83258383
83268384
8385
8386
83278387
83288388
83298389
......
89669026
89679027
89689028
8969
9029
89709030
89719031
89729032
......
94129472
94139473
94149474
9415
9416
9475
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
94179486
94189487
94199488
......
98749943
98759944
98769945
9946
9947
9948
9949
9950
9951
9952
98779953
98789954
98799955
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<object class="NSFont" key="NSSupport" id="445094936">
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSControlView" ref="964566138"/>
<object class="NSView" id="559514976">
<reference key="NSNextResponder" ref="908848173"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="559514976"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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">Nom</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Nom de la partition affichée durant le démarrage.</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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">Système de fichiers</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{43, 217}, {511, 310}}</string>
<reference key="NSSuperview" ref="559514976"/>
<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">Démarrage Partition</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<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">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="908848173"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{-34, -142}, {605, 568}}</string>
<string key="NSFrame">{{-32, -140}, {605, 568}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Box</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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">Nom</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Nom de la partition affichée durant le démarrage.</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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">Système de fichiers</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 70}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<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">Démarrage Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<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">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{44, 397}, {511, 130}}</string>
<string key="NSFrame">{{43, 397}, {511, 130}}</string>
<reference key="NSSuperview" ref="909745138"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSCellFlags">611450433</int>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSSupport" ref="774863777"/>
<reference key="NSControlView" ref="227177115"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags">75628032</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="445094936"/>
<object class="NSFont" key="NSSupport" id="445094936">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="930899267"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="971254835"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="507434950"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="999034340"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
</object>
<object class="NSScrollView" id="428072843">
<reference key="NSNextResponder" ref="1047727871"/>
<int key="NSvFlags">268</int>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="513001172">
<object class="NSView" id="270074358">
<reference key="NSNextResponder" ref="899041724"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="573633185">
<reference key="NSNextResponder" ref="270074358"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{45, 151}, {154, 25}}</string>
<reference key="NSSuperview" ref="270074358"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="973051221">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Extraire ACPI</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="573633185"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="899041724"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSFrameSize">{541, 408}</string>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<string key="NSLabel">Bios</string>
<string key="NSLabel">BIOS</string>
<reference key="NSColor" ref="1061310622"/>
<reference key="NSTabView" ref="869599070"/>
</object>
</object>
<int key="connectionID">1215</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1218</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mExtractACPITables</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1219</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1032245036"/>
<reference ref="158463244"/>
<reference ref="108632481"/>
<reference ref="1064169092"/>
<reference ref="908848173"/>
</object>
<reference key="object" ref="908848173"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="108632481"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<reference key="parent" ref="158463244"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="389526238"/>
</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="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
</object>
<reference key="parent" ref="303493593"/>
</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">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<reference key="parent" ref="830282976"/>
</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">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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</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">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">441</int>
<reference key="object" ref="848874798"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="899041724"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="573633185"/>
</object>
<reference key="parent" ref="1010390976"/>
</object>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1216</int>
<reference key="object" ref="573633185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="973051221"/>
</object>
<reference key="parent" ref="899041724"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1217</int>
<reference key="object" ref="973051221"/>
<reference key="parent" ref="573633185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="908848173"/>
</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="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<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">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1201.IBPluginDependency</string>
<string>1212.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>1216.IBPluginDependency</string>
<string>1217.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.CustomClassName</string>
<string>129.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{1.79769e+308, 1.79769e+308}</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>CenteredTextFieldCell</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1215</int>
<int key="maxID">1225</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">mEditSmbios</string>
<string key="NS.object.0">NSButton</string>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mEditSmbios</string>
<string>mExtractACPITables</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">PrintCore.framework/Headers/PDEPluginInterface.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
</object>
</object>
trunk/ChameleonPrefPane/Spanish.lproj/Chameleon.xib
181181
182182
183183
184
184
185185
186
186
187187
188188
189189
......
296296
297297
298298
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
299872
300873
301874
302875
303876
304
877
305878
306879
307880
......
310883
311884
312885
313
314
315
316
317
318
886
319887
320888
321889
......
398966
399967
400968
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
966969
967970
968971
......
11431146
11441147
11451148
1146
1149
11471150
11481151
11491152
......
12781281
12791282
12801283
1281
1282
1283
1284
1285
1284
12861285
12871286
12881287
......
16911690
16921691
16931692
1694
1693
1694
1695
1696
1697
16951698
16961699
16971700
......
37383741
37393742
37403743
3741
3744
37423745
37433746
37443747
......
38583861
38593862
38603863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
38613888
38623889
38633890
......
58725899
58735900
58745901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
58755918
58765919
58775920
......
60846127
60856128
60866129
6087
60886130
60896131
60906132
......
60956137
60966138
60976139
6140
60986141
60996142
61006143
......
61276170
61286171
61296172
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
62346173
62356174
62366175
......
70536992
70546993
70556994
6995
70566996
70576997
70586998
......
77607700
77617701
77627702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
77637821
77647822
77657823
......
78557913
78567914
78577915
7916
7917
78587918
78597919
78607920
......
83138373
83148374
83158375
8316
8376
83178377
83188378
8319
8379
83208380
83218381
83228382
......
83268386
83278387
83288388
8389
8390
83298391
83308392
83318393
......
89689030
89699031
89709032
8971
9033
89729034
89739035
89749036
......
94149476
94159477
94169478
9417
9418
9479
9480
9481
9482
9483
9484
9485
9486
9487
9488
9489
94199490
94209491
94219492
......
98769947
98779948
98789949
9950
9951
9952
9953
9954
9955
9956
98799957
98809958
98819959
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<object class="NSFont" key="NSSupport" id="445094936">
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSControlView" ref="964566138"/>
<object class="NSView" id="559514976">
<reference key="NSNextResponder" ref="908848173"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="559514976"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{43, 217}, {511, 310}}</string>
<reference key="NSSuperview" ref="559514976"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<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">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="908848173"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{-34, -142}, {605, 568}}</string>
<string key="NSFrame">{{-32, -140}, {605, 568}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Box</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 70}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<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">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{44, 397}, {511, 130}}</string>
<string key="NSFrame">{{43, 397}, {511, 130}}</string>
<reference key="NSSuperview" ref="909745138"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSCellFlags">611450433</int>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSSupport" ref="774863777"/>
<reference key="NSControlView" ref="227177115"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags">75628032</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="445094936"/>
<object class="NSFont" key="NSSupport" id="445094936">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes>
</object>
<object class="NSScrollView" id="428072843">
<reference key="NSNextResponder" ref="1047727871"/>
<int key="NSvFlags">268</int>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="513001172">
<object class="NSView" id="270074358">
<reference key="NSNextResponder" ref="899041724"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="573633185">
<reference key="NSNextResponder" ref="270074358"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{45, 151}, {154, 25}}</string>
<reference key="NSSuperview" ref="270074358"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="973051221">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Extract ACPI</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="573633185"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="899041724"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<int key="connectionID">1215</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1218</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mExtractACPITables</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1219</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1032245036"/>
<reference ref="158463244"/>
<reference ref="108632481"/>
<reference ref="1064169092"/>
<reference ref="908848173"/>
</object>
<reference key="object" ref="908848173"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="108632481"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<reference key="parent" ref="158463244"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="389526238"/>
</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="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
</object>
<reference key="parent" ref="303493593"/>
</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">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<reference key="parent" ref="830282976"/>
</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">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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</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">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">441</int>
<reference key="object" ref="848874798"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="899041724"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="573633185"/>
</object>
<reference key="parent" ref="1010390976"/>
</object>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1216</int>
<reference key="object" ref="573633185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="973051221"/>
</object>
<reference key="parent" ref="899041724"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1217</int>
<reference key="object" ref="973051221"/>
<reference key="parent" ref="573633185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="908848173"/>
</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="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<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">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1201.IBPluginDependency</string>
<string>1212.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>1216.IBPluginDependency</string>
<string>1217.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.CustomClassName</string>
<string>129.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{1.79769e+308, 1.79769e+308}</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>CenteredTextFieldCell</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1215</int>
<int key="maxID">1225</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">mEditSmbios</string>
<string key="NS.object.0">NSButton</string>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mEditSmbios</string>
<string>mExtractACPITables</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">PrintCore.framework/Headers/PDEPluginInterface.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
</object>
</object>
trunk/ChameleonPrefPane/German.lproj/Chameleon.xib
181181
182182
183183
184
184
185185
186
186
187187
188188
189189
......
296296
297297
298298
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
299872
300873
301874
302875
303876
304
877
305878
306879
307880
......
310883
311884
312885
313
314
315
316
317
318
886
319887
320888
321889
......
398966
399967
400968
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
966969
967970
968971
......
11431146
11441147
11451148
1146
1149
11471150
11481151
11491152
......
12781281
12791282
12801283
1281
1282
1283
1284
1285
1284
12861285
12871286
12881287
......
16911690
16921691
16931692
1694
1693
1694
1695
1696
1697
16951698
16961699
16971700
......
28982901
28992902
29002903
2901
29022904
29032905
29042906
......
30363038
30373039
30383040
3039
30403041
30413042
30423043
......
37383739
37393740
37403741
3741
3742
37423743
37433744
37443745
......
38583859
38593860
38603861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
38613886
38623887
38633888
......
58725897
58735898
58745899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
58755916
58765917
58775918
......
60846125
60856126
60866127
6087
60886128
60896129
60906130
......
60956135
60966136
60976137
6138
60986139
60996140
61006141
......
61276168
61286169
61296170
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
62346171
62356172
62366173
......
70536990
70546991
70556992
6993
70566994
70576995
70586996
......
77607698
77617699
77627700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
77637819
77647820
77657821
......
78557911
78567912
78577913
7914
7915
78587916
78597917
78607918
......
83128370
83138371
83148372
8315
8373
83168374
83178375
8318
8376
83198377
83208378
83218379
......
83258383
83268384
83278385
8386
8387
83288388
83298389
83308390
......
89679027
89689028
89699029
8970
9030
89719031
89729032
89739033
......
94139473
94149474
94159475
9416
9417
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
94189487
94199488
94209489
......
98759944
98769945
98779946
9947
9948
9949
9950
9951
9952
9953
98789954
98799955
98809956
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<object class="NSFont" key="NSSupport" id="445094936">
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSControlView" ref="964566138"/>
<object class="NSView" id="559514976">
<reference key="NSNextResponder" ref="908848173"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="559514976"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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">Volumen</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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Benenne Startvolumen um in:</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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">Dateisystem</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{43, 217}, {511, 310}}</string>
<reference key="NSSuperview" ref="559514976"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<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">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="908848173"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{-34, -142}, {605, 568}}</string>
<string key="NSFrame">{{-32, -140}, {605, 568}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Box</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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">Volumen</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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Benenne Startvolumen um in:</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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">Dateisystem</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 70}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<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">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{44, 397}, {511, 130}}</string>
<string key="NSFrame">{{43, 397}, {511, 130}}</string>
<reference key="NSSuperview" ref="909745138"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSCellFlags">611450433</int>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSSupport" ref="774863777"/>
<reference key="NSControlView" ref="227177115"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags">75628032</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="445094936"/>
<object class="NSFont" key="NSSupport" id="445094936">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="930899267"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="971254835"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="507434950"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="999034340"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
</object>
<object class="NSScrollView" id="428072843">
<reference key="NSNextResponder" ref="1047727871"/>
<int key="NSvFlags">268</int>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="513001172">
<object class="NSView" id="270074358">
<reference key="NSNextResponder" ref="899041724"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="573633185">
<reference key="NSNextResponder" ref="270074358"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{45, 151}, {154, 25}}</string>
<reference key="NSSuperview" ref="270074358"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="973051221">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Auszug APCI</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="573633185"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="899041724"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<int key="connectionID">1215</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1218</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mExtractACPITables</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1219</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1032245036"/>
<reference ref="158463244"/>
<reference ref="108632481"/>
<reference ref="1064169092"/>
<reference ref="908848173"/>
</object>
<reference key="object" ref="908848173"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="108632481"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<reference key="parent" ref="158463244"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="389526238"/>
</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="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
</object>
<reference key="parent" ref="303493593"/>
</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">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<reference key="parent" ref="830282976"/>
</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">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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</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">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">441</int>
<reference key="object" ref="848874798"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="899041724"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="573633185"/>
</object>
<reference key="parent" ref="1010390976"/>
</object>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1216</int>
<reference key="object" ref="573633185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="973051221"/>
</object>
<reference key="parent" ref="899041724"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1217</int>
<reference key="object" ref="973051221"/>
<reference key="parent" ref="573633185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="908848173"/>
</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="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<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">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1201.IBPluginDependency</string>
<string>1212.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>1216.IBPluginDependency</string>
<string>1217.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.CustomClassName</string>
<string>129.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{1.79769e+308, 1.79769e+308}</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>CenteredTextFieldCell</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1215</int>
<int key="maxID">1225</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">mEditSmbios</string>
<string key="NS.object.0">NSButton</string>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mEditSmbios</string>
<string>mExtractACPITables</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">PrintCore.framework/Headers/PDEPluginInterface.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
</object>
</object>
trunk/ChameleonPrefPane/Italian.lproj/Chameleon.xib
181181
182182
183183
184
184
185185
186
186
187187
188188
189189
......
296296
297297
298298
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
299872
300873
301874
302875
303876
304
877
305878
306879
307880
......
310883
311884
312885
313
314
315
316
317
318
886
319887
320888
321889
......
398966
399967
400968
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
966969
967970
968971
......
11431146
11441147
11451148
1146
1149
11471150
11481151
11491152
......
12781281
12791282
12801283
1281
1282
1283
1284
1285
1284
12861285
12871286
12881287
......
16911690
16921691
16931692
1694
1693
1694
1695
1696
1697
16951698
16961699
16971700
......
28982901
28992902
29002903
2901
29022904
29032905
29042906
......
30363038
30373039
30383040
3039
30403041
30413042
30423043
......
37383739
37393740
37403741
3741
3742
37423743
37433744
37443745
......
38583859
38593860
38603861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
38613886
38623887
38633888
......
58725897
58735898
58745899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
58755916
58765917
58775918
......
60846125
60856126
60866127
6087
60886128
60896129
60906130
......
60956135
60966136
60976137
6138
60986139
60996140
61006141
......
61276168
61286169
61296170
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
62346171
62356172
62366173
......
70536990
70546991
70556992
6993
70566994
70576995
70586996
......
77607698
77617699
77627700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
77637819
77647820
77657821
......
78557911
78567912
78577913
7914
7915
78587916
78597917
78607918
......
83168374
83178375
83188376
8319
8377
83208378
83218379
8322
8380
83238381
83248382
83258383
......
83298387
83308388
83318389
8390
8391
83328392
83338393
83348394
......
89739033
89749034
89759035
8976
9036
89779037
89789038
89799039
......
94199479
94209480
94219481
9422
9423
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
94249493
94259494
94269495
......
98819950
98829951
98839952
9953
9954
9955
9956
9957
9958
9959
98849960
98859961
98869962
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<object class="NSFont" key="NSSupport" id="445094936">
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSControlView" ref="964566138"/>
<object class="NSView" id="559514976">
<reference key="NSNextResponder" ref="908848173"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="559514976"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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">Nome</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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">Volume</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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Nome visualizzato dal Volume Avviabile durante il caricamento di Chameleon</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{43, 217}, {511, 310}}</string>
<reference key="NSSuperview" ref="559514976"/>
<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">Volume Avvio</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<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">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="908848173"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{-34, -142}, {605, 568}}</string>
<string key="NSFrame">{{-32, -140}, {605, 568}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Box</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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">Nome</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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">Volume</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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">Nome visualizzato dal Volume Avviabile durante il caricamento di Chameleon</string>
</object>
<object class="NSTableColumn" id="484280519">
<double key="NSWidth">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 70}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<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">Volume Avvio</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<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">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{44, 397}, {511, 130}}</string>
<string key="NSFrame">{{43, 397}, {511, 130}}</string>
<reference key="NSSuperview" ref="909745138"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSCellFlags">611450433</int>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSSupport" ref="774863777"/>
<reference key="NSControlView" ref="227177115"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags">75628032</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="445094936"/>
<object class="NSFont" key="NSSupport" id="445094936">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="930899267"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="971254835"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="507434950"/>
<string key="NSPlaceholderString"/>
<reference key="NSControlView" ref="999034340"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
</object>
<object class="NSScrollView" id="428072843">
<reference key="NSNextResponder" ref="1047727871"/>
<int key="NSvFlags">268</int>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="513001172">
<object class="NSView" id="270074358">
<reference key="NSNextResponder" ref="899041724"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="573633185">
<reference key="NSNextResponder" ref="270074358"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{45, 151}, {154, 25}}</string>
<reference key="NSSuperview" ref="270074358"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="973051221">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Estrarre ACPI</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="573633185"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="899041724"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<int key="connectionID">1215</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1218</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mExtractACPITables</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1219</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1032245036"/>
<reference ref="158463244"/>
<reference ref="108632481"/>
<reference ref="1064169092"/>
<reference ref="908848173"/>
</object>
<reference key="object" ref="908848173"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="108632481"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<reference key="parent" ref="158463244"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="389526238"/>
</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="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
</object>
<reference key="parent" ref="303493593"/>
</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">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<reference key="parent" ref="830282976"/>
</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">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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</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">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">441</int>
<reference key="object" ref="848874798"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="899041724"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="573633185"/>
</object>
<reference key="parent" ref="1010390976"/>
</object>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1216</int>
<reference key="object" ref="573633185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="973051221"/>
</object>
<reference key="parent" ref="899041724"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1217</int>
<reference key="object" ref="973051221"/>
<reference key="parent" ref="573633185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="908848173"/>
</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="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<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">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1201.IBPluginDependency</string>
<string>1212.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>1216.IBPluginDependency</string>
<string>1217.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.CustomClassName</string>
<string>129.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{1.79769e+308, 1.79769e+308}</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>CenteredTextFieldCell</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1215</int>
<int key="maxID">1225</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">mEditSmbios</string>
<string key="NS.object.0">NSButton</string>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mEditSmbios</string>
<string>mExtractACPITables</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">PrintCore.framework/Headers/PDEPluginInterface.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
</object>
</object>
trunk/ChameleonPrefPane/bin/version
1
1
2.0-RC3
2.0-RC4
trunk/ChameleonPrefPane/Resources/extractAcpi.sh
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
#/bin/sh
set -e
set -u
ACPI_DIR="${HOME}/Desktop/ACPI"
ioreg=
if [[ $# -eq 1 && -f "$1" ]]; then
ioreg="$(grep ' "ACPI Tables" =' "$1")"
else
ioreg="$(ioreg -lw0 | grep ' "ACPI Tables" =')"
fi
ioreg=${ioreg#*\{}
ioreg=${ioreg%\}*}
declare -a tables
ioreg="${ioreg//,/ }"
tables=($ioreg)
echo "Number of ACPI tables: ${#tables[@]}"
re='"([^"]+)"=<([^>]+)>'
dumped=0
for t in "${tables[@]}"; do
#echo Table: $t
if [[ $t =~ $re ]]; then
[[ $dumped = 0 ]] && mkdir -p ${ACPI_DIR}
((++dumped))
echo
echo "Dumping table: ${BASH_REMATCH[1]}"
#echo "Content: ${BASH_REMATCH[2]}"
echo "${BASH_REMATCH[2]}" | xxd -r -p > "${ACPI_DIR}/${BASH_REMATCH[1]}".aml
echo "AML code dumped to \"${ACPI_DIR}/${BASH_REMATCH[1]}.aml\""
type -p iasl &>/dev/null && iasl -d "${ACPI_DIR}/${BASH_REMATCH[1]}".aml \
&& echo "DSL code decompiled to \"${ACPI_DIR}/${BASH_REMATCH[1]}.dsl\""
echo
fi
done
#if [[ $dumped -gt 0 ]]; then
# zip -r ACPI.zip ACPI && echo "Zipped your ACPI tables in file \"ACPI.zip\""
#fi
trunk/ChameleonPrefPane/English.lproj/Localizable.strings
55
66
77
8
8
99
1010
1111
1212
1313
14
14
1515
1616
1717
1818
1919
20
20
2121
2222
2323
"Advanced" = "Advanced";
/* comment */
"SMBIOS" = "Bioxcvxs";
"Bios" = "BIOS";
/* comment */
"Boot_Flags" = "Boot Flags";
/* comment */
"Boot_From" = "Boot From";
"Boot_From" = "Startup Disk";
/* comment */
"Boot_Setup" = "Boot Setup";
/* comment */
"Efi_Inject" = "Efi Inject";
"Efi_Inject" = "EFI Inject";
/* comment */
"Peripherals" = "Peripherals";
trunk/ChameleonPrefPane/English.lproj/Chameleon.xib
182182
183183
184184
185
185
186186
187
187
188188
189189
190190
......
297297
298298
299299
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
300873
301874
302875
303876
304877
305
878
306879
307880
308881
......
311884
312885
313886
314
315
316
317
318
319
887
320888
321889
322890
......
339907
340908
341909
342
910
343911
344912
345913
......
399967
400968
401969
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
967970
968971
969972
970973
971974
972
975
973976
974977
975978
......
11441147
11451148
11461149
1147
1150
11481151
11491152
11501153
......
12791282
12801283
12811284
1282
1283
1284
1285
1286
1285
12871286
12881287
12891288
......
16921691
16931692
16941693
1695
1694
1695
1696
1697
1698
16961699
16971700
16981701
......
37243727
37253728
37263729
3727
3730
37283731
37293732
37303733
......
37373740
37383741
37393742
3740
3743
37413744
37423745
37433746
......
38573860
38583861
38593862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
38603887
38613888
38623889
......
58725899
58735900
58745901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
58755918
58765919
58775920
......
60846127
60856128
60866129
6087
60886130
60896131
60906132
......
60956137
60966138
60976139
6140
60986141
60996142
61006143
......
61276170
61286171
61296172
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
62346173
62356174
62366175
......
70536992
70546993
70556994
6995
70566996
70576997
70586998
......
77607700
77617701
77627702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
77637821
77647822
77657823
......
78547912
78557913
78567914
7915
7916
78577917
78587918
78597919
......
83128372
83138373
83148374
8315
8375
83168376
83178377
8318
8378
83198379
83208380
83218381
......
83248384
83258385
83268386
8387
8388
83278389
83288390
83298391
......
89669028
89679029
89689030
8969
9031
89709032
89719033
89729034
......
94129474
94139475
94149476
9415
9416
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
9487
94179488
94189489
94199490
......
98749945
98759946
98769947
9948
9949
9950
9951
9952
9953
9954
98779955
98789956
98799957
<int key="NSCellFlags">1140981312</int>
<int key="NSCellFlags2">2048</int>
<string key="NSContents">Text Cell</string>
<object class="NSFont" key="NSSupport" id="445094936">
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSControlView" ref="964566138"/>
<object class="NSView" id="559514976">
<reference key="NSNextResponder" ref="908848173"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="559514976"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{43, 217}, {511, 310}}</string>
<reference key="NSSuperview" ref="559514976"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<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">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<int key="NSBorderType">1</int>
<int key="NSBoxType">0</int>
<int key="NSTitlePosition">2</int>
<bool key="NSTransparent">NO</bool>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="908848173"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{-34, -142}, {605, 568}}</string>
<string key="NSFrame">{{-32, -140}, {605, 568}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<string key="NSOffsets">{0, 0}</string>
<int key="NSCellFlags2">0</int>
<string key="NSContents">Box</string>
<reference key="NSSupport" ref="26"/>
<object class="NSColor" key="NSBackgroundColor" id="501125233">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<string key="NSColorName">textBackgroundColor</string>
<reference key="NSColor" ref="732916706"/>
</object>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
<object class="NSButton" id="1032245036">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{367, 8}, {158, 25}}</string>
<string key="NSFrame">{{363, 8}, {158, 25}}</string>
<reference key="NSSuperview" ref="389526238"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
<object class="NSBox" id="108632481">
<reference key="NSNextResponder" ref="389526238"/>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSView" id="727875353">
<reference key="NSNextResponder" ref="108632481"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSScrollView" id="303493593">
<reference key="NSNextResponder" ref="727875353"/>
<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, 242}</string>
<reference key="NSSuperview" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</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"/>
<reference key="NSBackgroundColor" ref="501427186"/>
<reference key="NSTextColor" ref="429835715"/>
</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">211</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>
<object class="NSFont" key="NSSupport">
<string key="NSName">LucidaGrande-Bold</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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>
<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>
<object class="NSFont" key="NSSupport" id="307798102">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">14</double>
<int key="NSfFlags">16</int>
</object>
<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">128</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="307798102"/>
<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" id="178056349">
<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>
<string key="NSFrame">{{1, 17}, {471, 242}}</string>
<reference key="NSSuperview" ref="303493593"/>
<reference key="NSNextKeyView" ref="830282976"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="830282976"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.93697478991596639</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSsFlags">1</int>
<reference key="NSTarget" ref="303493593"/>
<string key="NSAction">_doScroller:</string>
<double key="NSPercent">0.99785407725321884</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"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<reference key="NSDocView" ref="4756718"/>
<reference key="NSBGColor" ref="694251928"/>
<int key="NScvFlags">4</int>
</object>
<reference ref="447791831"/>
</object>
<string key="NSFrame">{{18, 20}, {473, 260}}</string>
<reference key="NSSuperview" ref="727875353"/>
<reference key="NSNextKeyView" ref="729666351"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<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>
</object>
<string key="NSFrame">{{1, 1}, {509, 294}}</string>
<reference key="NSSuperview" ref="108632481"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{13, 78}, {511, 310}}</string>
<reference key="NSSuperview" ref="389526238"/>
<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 Partition</string>
<reference key="NSSupport" ref="26"/>
<reference key="NSBackgroundColor" ref="501125233"/>
<object class="NSColor" key="NSTextColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MCAwLjgwMDAwMDAxMTkAA</bytes>
</object>
</object>
<reference key="NSContentView" ref="727875353"/>
<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">{541, 408}</string>
<reference key="NSSuperview" ref="869599070"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<string key="NSLabel">Boot From ...</string>
<string key="NSLabel">Startup Disk</string>
<object class="NSColor" key="NSColor" id="1061310622">
<int key="NSColorSpace">6</int>
<string key="NSCatalogName">System</string>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
</object>
<string key="NSFrame">{{44, 397}, {511, 130}}</string>
<string key="NSFrame">{{43, 397}, {511, 130}}</string>
<reference key="NSSuperview" ref="909745138"/>
<bool key="NSViewIsLayerTreeHost">YES</bool>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<int key="NSCellFlags">611450433</int>
<int key="NSCellFlags2">272630784</int>
<string key="NSContents"/>
<object class="NSFont" key="NSSupport" id="774863777">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">11</double>
<int key="NSfFlags">16</int>
</object>
<reference key="NSSupport" ref="774863777"/>
<reference key="NSControlView" ref="227177115"/>
<bool key="NSDrawsBackground">YES</bool>
<reference key="NSBackgroundColor" ref="501125233"/>
<int key="NSCellFlags">75628032</int>
<int key="NSCellFlags2">0</int>
<string key="NSContents"/>
<reference key="NSSupport" ref="445094936"/>
<object class="NSFont" key="NSSupport" id="445094936">
<string key="NSName">LucidaGrande</string>
<double key="NSSize">12</double>
<int key="NSfFlags">16</int>
</object>
<object class="NSColor" key="NSBackgroundColor">
<int key="NSColorSpace">3</int>
<bytes key="NSWhite">MC4zMzMzMzI5ODU2AA</bytes>
<object class="NSButtonCell" key="NSCell" id="781559600">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Current Gfx Injection</string>
<string key="NSContents">Current GFX Injection</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="87714271"/>
<int key="NSButtonFlags">-2038152961</int>
</object>
<object class="NSScrollView" id="428072843">
<reference key="NSNextResponder" ref="1047727871"/>
<int key="NSvFlags">268</int>
<int key="NSvFlags">12</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSClipView" id="513001172">
<object class="NSView" id="270074358">
<reference key="NSNextResponder" ref="899041724"/>
<int key="NSvFlags">256</int>
<object class="NSMutableArray" key="NSSubviews">
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSButton" id="573633185">
<reference key="NSNextResponder" ref="270074358"/>
<int key="NSvFlags">268</int>
<string key="NSFrame">{{45, 151}, {154, 25}}</string>
<reference key="NSSuperview" ref="270074358"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="973051221">
<int key="NSCellFlags">-2080244224</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Extract ACPI</string>
<reference key="NSSupport" ref="930899267"/>
<reference key="NSControlView" ref="573633185"/>
<int key="NSButtonFlags">-2038284033</int>
<int key="NSButtonFlags2">163</int>
<string key="NSAlternateContents"/>
<string key="NSKeyEquivalent"/>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
</object>
</object>
<string key="NSFrame">{{1, 1}, {603, 566}}</string>
<reference key="NSSuperview" ref="899041724"/>
<int key="NSViewLayerContentsRedrawPolicy">2</int>
</object>
<int key="connectionID">1215</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">onCheckButtonChange:</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1218</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">mExtractACPITables</string>
<reference key="source" ref="338278736"/>
<reference key="destination" ref="573633185"/>
</object>
<int key="connectionID">1219</int>
</object>
</object>
<object class="IBMutableOrderedSet" key="objectRecords">
<object class="NSArray" key="orderedObjects">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1032245036"/>
<reference ref="158463244"/>
<reference ref="108632481"/>
<reference ref="1064169092"/>
<reference ref="908848173"/>
</object>
<reference key="object" ref="908848173"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="108632481"/>
</object>
<reference key="parent" ref="389526238"/>
</object>
<reference key="parent" ref="158463244"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="389526238"/>
</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="681132672"/>
<reference ref="94292441"/>
<reference ref="830282976"/>
<reference ref="4756718"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">100</int>
<reference key="object" ref="681132672"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="415322677"/>
<reference ref="861957185"/>
<reference ref="484280519"/>
<reference ref="1059690284"/>
</object>
<reference key="parent" ref="303493593"/>
</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">128</int>
<reference key="object" ref="861957185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<reference key="parent" ref="830282976"/>
</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">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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</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">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">441</int>
<reference key="object" ref="848874798"/>
<object class="NSMutableArray" key="children">
<reference key="object" ref="899041724"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="573633185"/>
</object>
<reference key="parent" ref="1010390976"/>
</object>
<reference key="object" ref="436163438"/>
<reference key="parent" ref="691961689"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1216</int>
<reference key="object" ref="573633185"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="973051221"/>
</object>
<reference key="parent" ref="899041724"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">1217</int>
<reference key="object" ref="973051221"/>
<reference key="parent" ref="573633185"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">937</int>
<reference key="object" ref="108632481"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="303493593"/>
</object>
<reference key="parent" ref="908848173"/>
</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="4756718"/>
<reference ref="830282976"/>
<reference ref="94292441"/>
<reference ref="681132672"/>
</object>
<reference key="parent" ref="108632481"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="4756718"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">102</int>
<reference key="object" ref="830282976"/>
<object class="NSMutableArray" key="children">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="1059690284"/>
<reference ref="484280519"/>
<reference ref="861957185"/>
<reference ref="415322677"/>
</object>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">101</int>
<reference key="object" ref="94292441"/>
<reference key="parent" ref="303493593"/>
</object>
<object class="IBObjectRecord">
<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">
<bool key="EncodedWithXMLCoder">YES</bool>
<reference ref="341168767"/>
</object>
<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">107</int>
<reference key="object" ref="68552929"/>
<reference key="parent" ref="484280519"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">160</int>
<reference key="object" ref="694935989"/>
<reference key="parent" ref="1059690284"/>
</object>
</object>
</object>
<object class="NSMutableDictionary" key="flattenedProperties">
<string>1201.IBPluginDependency</string>
<string>1212.IBPluginDependency</string>
<string>1214.IBPluginDependency</string>
<string>1216.IBPluginDependency</string>
<string>1217.IBPluginDependency</string>
<string>128.IBPluginDependency</string>
<string>129.CustomClassName</string>
<string>129.IBPluginDependency</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<boolean value="YES"/>
<string>{{320, 546}, {668, 439}}</string>
<string>{{512, 144}, {668, 439}}</string>
<integer value="1"/>
<integer value="1"/>
<string>{224.664, 10}</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>CenteredTextFieldCell</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</object>
</object>
<nil key="sourceID"/>
<int key="maxID">1215</int>
<int key="maxID">1225</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes">
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
</object>
</object>
<object class="NSMutableDictionary" key="outlets">
<string key="NS.key.0">mEditSmbios</string>
<string key="NS.object.0">NSButton</string>
<bool key="EncodedWithXMLCoder">YES</bool>
<object class="NSArray" key="dict.sortedKeys">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>mEditSmbios</string>
<string>mExtractACPITables</string>
</object>
<object class="NSMutableArray" key="dict.values">
<bool key="EncodedWithXMLCoder">YES</bool>
<string>NSButton</string>
<string>NSButton</string>
</object>
</object>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">PrintCore.framework/Headers/PDEPluginInterface.h</string>
</object>
</object>
<object class="IBPartialClassDescription">
<string key="className">NSObject</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBFrameworkSource</string>
<string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
</object>
</object>
branches/diebuche/ChameleonPrefPane/ChameleonPrefPane.xcodeproj/project.pbxproj
1010
1111
1212
13
14
15
1316
1417
1518
......
8790
8891
8992
93
94
95
9096
9197
9298
......
184190
185191
186192
193
187194
188195
189196
......
214221
215222
216223
224
225
226
227
228
229
230
231
232
233
234
235
217236
218237
219238
......
293312
294313
295314
315
296316
297
298
299
300317
301318
302319
......
334351
335352
336353
354
337355
338356
339357
......
489507
490508
491509
510
511
492512
493513
494514
01466A931104062500088464 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466A921104062500088464 /* Security.framework */; };
01466C2A110408CC00088464 /* SecurityInterface.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C29110408CC00088464 /* SecurityInterface.framework */; };
01466C381104091400088464 /* SecurityFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01466C371104091400088464 /* SecurityFoundation.framework */; };
014E0D5E111906650075A619 /* iasl in Resources */ = {isa = PBXBuildFile; fileRef = 014E0D5D111906650075A619 /* iasl */; };
014E0D7311191E8C0075A619 /* extractAcpi.sh in Resources */ = {isa = PBXBuildFile; fileRef = 014E0D7211191E8C0075A619 /* extractAcpi.sh */; };
014E0E3D111942F20075A619 /* ApplicationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 014E0E3C111942F20075A619 /* ApplicationServices.framework */; };
0153D3C511178A7C00E0442E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167EFE841241C02AAC07 /* InfoPlist.strings */; };
0153D3D211178D0400E0442E /* Chameleon.strings in Resources */ = {isa = PBXBuildFile; fileRef = 0153D3D011178D0400E0442E /* Chameleon.strings */; };
0196529B11066CC0009E8F2F /* README in Resources */ = {isa = PBXBuildFile; fileRef = 0196529A11066CC0009E8F2F /* README */; };
01466A921104062500088464 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
01466C29110408CC00088464 /* SecurityInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityInterface.framework; path = System/Library/Frameworks/SecurityInterface.framework; sourceTree = SDKROOT; };
01466C371104091400088464 /* SecurityFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SecurityFoundation.framework; path = System/Library/Frameworks/SecurityFoundation.framework; sourceTree = SDKROOT; };
014E0D5D111906650075A619 /* iasl */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = iasl; path = ../../../../../../devl/OSX/voodoo/chameleonApplications/trunk/ChameleonPrefPane/Resources/iasl; sourceTree = "<group>"; };
014E0D7211191E8C0075A619 /* extractAcpi.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = extractAcpi.sh; path = ../../../../../../devl/OSX/voodoo/chameleonApplications/trunk/ChameleonPrefPane/Resources/extractAcpi.sh; sourceTree = "<group>"; };
014E0E3C111942F20075A619 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
0153D3C611178A9100E0442E /* German */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = German; path = German.lproj/Localizable.strings; sourceTree = "<group>"; };
0153D3C711178A9500E0442E /* Italian */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Italian; path = Italian.lproj/Localizable.strings; sourceTree = "<group>"; };
0153D3C811178A9B00E0442E /* French */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = French; path = French.lproj/Localizable.strings; sourceTree = "<group>"; };
01466C2A110408CC00088464 /* SecurityInterface.framework in Frameworks */,
01466C381104091400088464 /* SecurityFoundation.framework in Frameworks */,
B3981F7D1113376C009E2520 /* QuartzCore.framework in Frameworks */,
014E0E3D111942F20075A619 /* ApplicationServices.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
name = Images;
sourceTree = "<group>";
};
014E0D7411191EA70075A619 /* Tools */ = {
isa = PBXGroup;
children = (
01A25D68111109FF0024EA7E /* cdBootCreator.sh */,
01A25D69111109FF0024EA7E /* getDevProp.sh */,
01A25D6A111109FF0024EA7E /* gfxutil */,
014E0D5D111906650075A619 /* iasl */,
014E0D7211191E8C0075A619 /* extractAcpi.sh */,
);
name = Tools;
sourceTree = "<group>";
};
01E314A9110FF91C0058F210 /* Controllers */ = {
isa = PBXGroup;
children = (
089C167CFE841241C02AAC07 /* Resources */ = {
isa = PBXGroup;
children = (
014E0D7411191EA70075A619 /* Tools */,
014E0CB51117BACA0075A619 /* Images */,
01A25D68111109FF0024EA7E /* cdBootCreator.sh */,
01A25D69111109FF0024EA7E /* getDevProp.sh */,
01A25D6A111109FF0024EA7E /* gfxutil */,
01B0E8261108B89100ACF21B /* CREDITS */,
01B0E81B1108B87A00ACF21B /* Chameleon.icns */,
8D202CF70486D31800D8A456 /* Info.plist */,
01466A921104062500088464 /* Security.framework */,
01466C29110408CC00088464 /* SecurityInterface.framework */,
01466C371104091400088464 /* SecurityFoundation.framework */,
014E0E3C111942F20075A619 /* ApplicationServices.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
B3A0F64F11173B7300B42162 /* wrench.png in Resources */,
B3A0F65311173C7500B42162 /* flag.png in Resources */,
0153D3D211178D0400E0442E /* Chameleon.strings in Resources */,
014E0D5E111906650075A619 /* iasl in Resources */,
014E0D7311191E8C0075A619 /* extractAcpi.sh in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};

Archive Download the corresponding diff file

Revision: 106