-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolidVentor.sldreg
14075 lines (12148 loc) · 530 KB
/
SolidVentor.sldreg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
REGEDIT4
;SolidWorks Copy Settings Wizard
[HKEY_CURRENT_USER\Software\SolidWorks]
[HKEY_CURRENT_USER\Software\SolidWorks\General]
"Thumbnail graphics"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Animator]
"Manual Key Background Color"=dword:00ebebeb
"Timeline Text Color"=dword:00666666
"Timeline Tick Color"=dword:00666666
"Timeline Background Invalid Color"=dword:00cccccc
"Timeline Background Solved Color"=dword:0080ffff
"Timeline Background Bad Solve Color"=dword:000000ff
"Hidden Child Color"=dword:00999999
"Master Color"=dword:00ffffff
"Physical Simulation Color"=dword:00ffffff
"Viewpoint Color"=dword:00ffffff
"Suppressed Viewpoint Color"=dword:00999999
"Active Camera Change Color"=dword:004aadce
"Captured Change Color"=dword:0000ffff
"Solved Change Color"=dword:0033cc33
"Presentation Change Color"=dword:0000a6ff
"Visual Change Color"=dword:00ff00ff
"Solving Change Color"=dword:00ff0000
"Light or Camera Change Color"=dword:00ffff00
"Normal Key Color"=dword:00ff0000
"Suppressed Key Color"=dword:00999999
"Unknown Solved Key Color"=dword:00cc3333
"Conflict Solved Key Color"=dword:000000ff
"Key Border Color"=dword:00ffffff
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Assemblies]
"Allow Default Move"=dword:00000001
"Des Lib Paths Settings"=dword:00000001
"Enable Mate Flip On Edit"=dword:00000000
"ClearanceShowIgnored"=dword:00000000
"ClearanceSubAssyAsComp"=dword:00000000
"ClearanceIgnoreEqual"=dword:00000000
"ClearanceMakeTransparent"=dword:00000001
"ClearanceCreateFasteners"=dword:00000000
"ClearanceDisplayOption"=dword:00000001
"Save New Comp To External File"=dword:00000000
"Envelope Components Transparency"=dword:00000000
"Load Envelope Components Lightweight"=dword:00000000
"Load Envelope Components read-Only"=dword:00000000
"Update External Files Display List"=dword:00000000
"Allow misaligned mates"=dword:00000001
"Use Intelligent Mate Positioning"=dword:00000001
"Set Custom Option For Opposite Hand Mirror Components"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Auto Dimension Drawing]
"Vertical Scheme"="baseline"
"Horizontal Dimension Placement"=dword:00000001
"Horizontal Scheme"="baseline"
"Vertical Dimension Placement"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Auto Dimension Sketch]
"Vertical Scheme"="baseline"
"Horizontal Scheme"="baseline"
"Vertical Datum Index"=dword:00000000
"Vertical Dimension Placement"=dword:00000001
"Vertical Datum Side"=dword:00000000
"Horizontal Datum Side"=dword:00000000
"Horizontal Dimension Placement"=dword:00000001
"Horizontal Datum Index"=dword:00000000
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\AutoFix]
"Split By Feature"=dword:00000000
"Split Disjoint Fillets 1"=dword:00000001
"Enable Fillet Tangent Propagation Limiting 1"=dword:00000001
"Enable Fillet Fallback"=dword:00000001
"Autofix Timeout"=dword:000000c8
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Collab]
"Enhanced refs display"=dword:00000000
"Abort Read-only Top Docs"=dword:00000000
"Ping Interval"=dword:00000014
"Ping Files"=dword:00000000
"Enable Collab"=dword:00000000
"Enable Collab Menu Items"=dword:00000000
"Enable Auto timestamp in Comments"=dword:00000001
"Show Comments in PropertyManager"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Color Schemes]
"Scheme Count"=dword:00000004
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Color Schemes\01 - Scheme Folder]
"Scheme Name"="Default"
"PM Scheme"=dword:00000007
"PM Skin Scheme Name"="None"
"Background Appearance"=dword:00000003
"Background Image"="smoke.png"
"Match Background in FeatureManager"=dword:00000000
"Drawings, Visible Model Edges"="0"
"Text"="0"
"Drawings, Hidden Model Edges"="0"
"Sketch, Over Defined"="255"
"Sketch, Fully Defined"="0"
"Sketch, Under Defined"="16711680"
"Dangling Dimension"="32896"
"Highlight"="16711935"
"Grid Lines, Minor"="12632256"
"Grid Lines, Major"="8421504"
"Viewport Background"="13813955"
"Drawings, Paper Color"="14411494"
"Drawings, Sheet Border"="0"
"Crosshairs, Drawings"="0"
"Selected Item 1"="16755027"
"Construction Geometry"="16711680"
"Temporary Graphics"="65535"
"Dynamic Highlight"="33023"
"Imported Annotations (Driving)"="0"
"Imported Annotations (Driven)"="8421504"
"Assembly, Edit Part"="16711680"
"Assembly, Hidden Lines of Edit Part"="8421504"
"Assembly, Non-Edit Parts"="12632256"
"Inactive Entities"="12632256"
"Sketch, Invalid Geometry"="55255"
"Sketch, Not Solved"="8421631"
"Active Selection Listbox"="8421631"
"Temporary Graphics, Shaded"="8454143"
"Top Gradient Color"="11179655"
"Bottom Gradient Color"="13813955"
"Surfaces, Open Edges"="12615680"
"Selected Item 2"="12615935"
"Selected Item 3"="16711808"
"Selected Face, Shaded"="16744448"
"HLR Edges in Shaded Mode"="0"
"X axis of Reference Triad"="255"
"Y axis of Reference Triad"="32768"
"Z axis of Reference Triad"="16711680"
"Sketch, Inactive"="8421504"
"Dimension, controlled by design table"="16711935"
"Selected Item 4"="3394560"
"Tree Item Normal"="0"
"Tree Item Selected"="16776960"
"Drawings, View Border"="12632256"
"Drawings, Background"="13813955"
"Drawings, Locked Focus"="8421504"
"Design Intent"="16711808"
"Annotations, Imported (Driving)"="0"
"Annotations Non-Imported (Driven)"="0"
"Assembly Interfence Volume"="255"
"Hidden Entity Selection Show Color"="33023"
"TextBox Handle Color In Note edit"="255"
"SWIFT Annotations"="16711935"
"SWIFT Under Constraint"="65535"
"SWIFT Fully Constraint"="65280"
"SWIFT Over Constraint"="255"
"Tolerance Analysis Annotations"="16711935"
"Temporary Sketch Draggin Color"="0"
"Spline Handle and Polygon Inactive Color"="8421504"
"Selected Item Missing Reference"="255"
"Handle Color In Note "="255"
"Drawings, Model Edges (SpeedPak)"="255"
"Drawings, Model Tangent Edges"="255"
"Mate Callout, Error"="8454016"
"Mate Callout, Warning"="8454143"
"Mate Callout, Healthy"="8421631"
"Temporary Sheet Metal Color"="8421631"
"Measure Selection"="65280"
"Drawings, Changed dimensions"="65280"
"Routing Adjoining Component Color"="65280"
"Selected weld path"="65280"
"Envelope Components"="65280"
"Assembly Visualization first"="255"
"Assembly Visualization second"="16711680"
"Assembly Visualization third"="65535"
"Assembly Visualization fourth"="65280"
"Assembly Visualization fifth"="16711808"
"Assembly Visualization sixth"="16777088"
"Zone Lines,Inactive"="16777088"
"Manipulator connection point color"="16777088"
"Temporary Graphics Add Material"="16777088"
"Temporary Graphics Remove Material"="16777088"
"Graphics Tree Item Normal"="0"
"Graphics Tree Item Selected"="0"
"Sketch, Shaded Contours"="0"
"Graphical Annotations"="0"
"Selected Item 5"="7209120"
"Selected Item 6"="6585610"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Color Schemes\02 - Scheme Folder]
"Scheme Name"="Blue Highlight"
"PM Scheme"=dword:00000007
"PM Skin Scheme Name"=""
"Background Appearance"=dword:00000003
"Background Image"="smoke.png"
"Match Background in FeatureManager"=dword:00000000
"Drawings, Visible Model Edges"="0"
"Text"="0"
"Drawings, Hidden Model Edges"="0"
"Sketch, Over Defined"="255"
"Sketch, Fully Defined"="0"
"Sketch, Under Defined"="16711680"
"Dangling Dimension"="32896"
"Highlight"="16711935"
"Grid Lines, Minor"="12632256"
"Grid Lines, Major"="8421504"
"Viewport Background"="13813955"
"Drawings, Paper Color"="14411494"
"Drawings, Sheet Border"="0"
"Crosshairs, Drawings"="0"
"Selected Item 1"="16755027"
"Construction Geometry"="16711680"
"Temporary Graphics"="65535"
"Dynamic Highlight"="33023"
"Imported Annotations (Driving)"="0"
"Imported Annotations (Driven)"="8421504"
"Assembly, Edit Part"="16711680"
"Assembly, Hidden Lines of Edit Part"="8421504"
"Assembly, Non-Edit Parts"="12632256"
"Inactive Entities"="12632256"
"Sketch, Invalid Geometry"="55255"
"Sketch, Not Solved"="8421631"
"Active Selection Listbox"="8421631"
"Temporary Graphics, Shaded"="8454143"
"Top Gradient Color"="11179655"
"Bottom Gradient Color"="13813955"
"Surfaces, Open Edges"="12615680"
"Selected Item 2"="12615935"
"Selected Item 3"="16711808"
"Selected Face, Shaded"="16744448"
"HLR Edges in Shaded Mode"="0"
"X axis of Reference Triad"="255"
"Y axis of Reference Triad"="32768"
"Z axis of Reference Triad"="16711680"
"Sketch, Inactive"="8421504"
"Dimension, controlled by design table"="16711935"
"Selected Item 4"="3394560"
"Tree Item Normal"="0"
"Tree Item Selected"="16776960"
"Drawings, View Border"="12632256"
"Drawings, Background"="13813955"
"Drawings, Locked Focus"="8421504"
"Design Intent"="16711808"
"Annotations, Imported (Driving)"="0"
"Annotations Non-Imported (Driven)"="0"
"Assembly Interfence Volume"="255"
"Hidden Entity Selection Show Color"="33023"
"TextBox Handle Color In Note edit"="255"
"SWIFT Annotations"="16711935"
"SWIFT Under Constraint"="65535"
"SWIFT Fully Constraint"="65280"
"SWIFT Over Constraint"="255"
"Tolerance Analysis Annotations"="16711935"
"Temporary Sketch Draggin Color"="0"
"Spline Handle and Polygon Inactive Color"="8421504"
"Selected Item Missing Reference"="255"
"Handle Color In Note "="255"
"Drawings, Model Edges (SpeedPak)"="255"
"Drawings, Model Tangent Edges"="255"
"Mate Callout, Error"="8454016"
"Mate Callout, Warning"="8454143"
"Mate Callout, Healthy"="8421631"
"Temporary Sheet Metal Color"="8421631"
"Measure Selection"="65280"
"Drawings, Changed dimensions"="65280"
"Routing Adjoining Component Color"="65280"
"Selected weld path"="65280"
"Envelope Components"="65280"
"Assembly Visualization first"="255"
"Assembly Visualization second"="16711680"
"Assembly Visualization third"="65535"
"Assembly Visualization fourth"="65280"
"Assembly Visualization fifth"="16711808"
"Assembly Visualization sixth"="16777088"
"Zone Lines,Inactive"="16777088"
"Manipulator connection point color"="16777088"
"Temporary Graphics Add Material"="16777088"
"Temporary Graphics Remove Material"="16777088"
"Graphics Tree Item Normal"="0"
"Graphics Tree Item Selected"="0"
"Sketch, Shaded Contours"="0"
"Graphical Annotations"="0"
"Selected Item 5"="7209120"
"Selected Item 6"="6585610"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Color Schemes\03 - Scheme Folder]
"Scheme Name"="Green Highlight"
"PM Scheme"=dword:00000007
"PM Skin Scheme Name"=""
"Background Appearance"=dword:00000003
"Background Image"="smoke.png"
"Match Background in FeatureManager"=dword:00000000
"Drawings, Visible Model Edges"="0"
"Text"="0"
"Drawings, Hidden Model Edges"="0"
"Sketch, Over Defined"="255"
"Sketch, Fully Defined"="0"
"Sketch, Under Defined"="16711680"
"Dangling Dimension"="32896"
"Highlight"="16711935"
"Grid Lines, Minor"="12632256"
"Grid Lines, Major"="8421504"
"Viewport Background"="13813955"
"Drawings, Paper Color"="14411494"
"Drawings, Sheet Border"="0"
"Crosshairs, Drawings"="0"
"Selected Item 1"="3394560"
"Construction Geometry"="16711680"
"Temporary Graphics"="65535"
"Dynamic Highlight"="33023"
"Imported Annotations (Driving)"="0"
"Imported Annotations (Driven)"="8421504"
"Assembly, Edit Part"="16711680"
"Assembly, Hidden Lines of Edit Part"="8421504"
"Assembly, Non-Edit Parts"="12632256"
"Inactive Entities"="12632256"
"Sketch, Invalid Geometry"="55255"
"Sketch, Not Solved"="8421631"
"Active Selection Listbox"="8421631"
"Temporary Graphics, Shaded"="8454143"
"Top Gradient Color"="11179655"
"Bottom Gradient Color"="13813955"
"Surfaces, Open Edges"="12615680"
"Selected Item 2"="12615935"
"Selected Item 3"="16711808"
"Selected Face, Shaded"="3061504"
"HLR Edges in Shaded Mode"="0"
"X axis of Reference Triad"="255"
"Y axis of Reference Triad"="32768"
"Z axis of Reference Triad"="16711680"
"Sketch, Inactive"="8421504"
"Dimension, controlled by design table"="16711935"
"Selected Item 4"="16755027"
"Tree Item Normal"="0"
"Tree Item Selected"="16776960"
"Drawings, View Border"="12632256"
"Drawings, Background"="13813955"
"Drawings, Locked Focus"="8421504"
"Design Intent"="16711808"
"Annotations, Imported (Driving)"="0"
"Annotations Non-Imported (Driven)"="0"
"Assembly Interfence Volume"="255"
"Hidden Entity Selection Show Color"="33023"
"TextBox Handle Color In Note edit"="255"
"SWIFT Annotations"="16711935"
"SWIFT Under Constraint"="65535"
"SWIFT Fully Constraint"="65280"
"SWIFT Over Constraint"="255"
"Tolerance Analysis Annotations"="16711935"
"Temporary Sketch Draggin Color"="0"
"Spline Handle and Polygon Inactive Color"="8421504"
"Selected Item Missing Reference"="255"
"Handle Color In Note "="255"
"Drawings, Model Edges (SpeedPak)"="255"
"Drawings, Model Tangent Edges"="255"
"Mate Callout, Error"="8454016"
"Mate Callout, Warning"="8454143"
"Mate Callout, Healthy"="8421631"
"Temporary Sheet Metal Color"="8421631"
"Measure Selection"="65280"
"Drawings, Changed dimensions"="65280"
"Routing Adjoining Component Color"="65280"
"Selected weld path"="65280"
"Envelope Components"="65280"
"Assembly Visualization first"="255"
"Assembly Visualization second"="16711680"
"Assembly Visualization third"="65535"
"Assembly Visualization fourth"="65280"
"Assembly Visualization fifth"="16711808"
"Assembly Visualization sixth"="16777088"
"Zone Lines,Inactive"="16777088"
"Manipulator connection point color"="16777088"
"Temporary Graphics Add Material"="16777088"
"Temporary Graphics Remove Material"="16777088"
"Graphics Tree Item Normal"="0"
"Graphics Tree Item Selected"="0"
"Sketch, Shaded Contours"="0"
"Graphical Annotations"="0"
"Selected Item 5"="7209120"
"Selected Item 6"="6585610"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Color Schemes\04 - Scheme Folder]
"Scheme Name"="Orange Highlight"
"PM Scheme"=dword:00000007
"PM Skin Scheme Name"=""
"Background Appearance"=dword:00000003
"Background Image"="smoke.png"
"Match Background in FeatureManager"=dword:00000000
"Drawings, Visible Model Edges"="0"
"Text"="0"
"Drawings, Hidden Model Edges"="0"
"Sketch, Over Defined"="255"
"Sketch, Fully Defined"="0"
"Sketch, Under Defined"="16711680"
"Dangling Dimension"="32896"
"Highlight"="16711935"
"Grid Lines, Minor"="12632256"
"Grid Lines, Major"="8421504"
"Viewport Background"="13813955"
"Drawings, Paper Color"="14411494"
"Drawings, Sheet Border"="0"
"Crosshairs, Drawings"="0"
"Selected Item 1"="2987775"
"Construction Geometry"="16711680"
"Temporary Graphics"="65535"
"Dynamic Highlight"="29928"
"Imported Annotations (Driving)"="0"
"Imported Annotations (Driven)"="8421504"
"Assembly, Edit Part"="16711680"
"Assembly, Hidden Lines of Edit Part"="8421504"
"Assembly, Non-Edit Parts"="12632256"
"Inactive Entities"="12632256"
"Sketch, Invalid Geometry"="55255"
"Sketch, Not Solved"="8421631"
"Active Selection Listbox"="8421631"
"Temporary Graphics, Shaded"="8454143"
"Top Gradient Color"="11179655"
"Bottom Gradient Color"="13813955"
"Surfaces, Open Edges"="12615680"
"Selected Item 2"="12615935"
"Selected Item 3"="16711808"
"Selected Face, Shaded"="7452927"
"HLR Edges in Shaded Mode"="0"
"X axis of Reference Triad"="255"
"Y axis of Reference Triad"="32768"
"Z axis of Reference Triad"="16711680"
"Sketch, Inactive"="8421504"
"Dimension, controlled by design table"="16711935"
"Selected Item 4"="16755027"
"Tree Item Normal"="0"
"Tree Item Selected"="16776960"
"Drawings, View Border"="12632256"
"Drawings, Background"="13813955"
"Drawings, Locked Focus"="8421504"
"Design Intent"="16711808"
"Annotations, Imported (Driving)"="0"
"Annotations Non-Imported (Driven)"="0"
"Assembly Interfence Volume"="255"
"Hidden Entity Selection Show Color"="33023"
"TextBox Handle Color In Note edit"="255"
"SWIFT Annotations"="16711935"
"SWIFT Under Constraint"="65535"
"SWIFT Fully Constraint"="65280"
"SWIFT Over Constraint"="255"
"Tolerance Analysis Annotations"="16711935"
"Temporary Sketch Draggin Color"="0"
"Spline Handle and Polygon Inactive Color"="8421504"
"Selected Item Missing Reference"="255"
"Handle Color In Note "="255"
"Drawings, Model Edges (SpeedPak)"="255"
"Drawings, Model Tangent Edges"="255"
"Mate Callout, Error"="8454016"
"Mate Callout, Warning"="8454143"
"Mate Callout, Healthy"="8421631"
"Temporary Sheet Metal Color"="8421631"
"Measure Selection"="65280"
"Drawings, Changed dimensions"="65280"
"Routing Adjoining Component Color"="65280"
"Selected weld path"="65280"
"Envelope Components"="65280"
"Assembly Visualization first"="255"
"Assembly Visualization second"="16711680"
"Assembly Visualization third"="65535"
"Assembly Visualization fourth"="65280"
"Assembly Visualization fifth"="16711808"
"Assembly Visualization sixth"="16777088"
"Zone Lines,Inactive"="16777088"
"Manipulator connection point color"="16777088"
"Temporary Graphics Add Material"="16777088"
"Temporary Graphics Remove Material"="16777088"
"Graphics Tree Item Normal"="0"
"Graphics Tree Item Selected"="0"
"Sketch, Shaded Contours"="0"
"Graphical Annotations"="0"
"Selected Item 5"="7209120"
"Selected Item 6"="6585610"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Colors]
"Drawings, Visible Model Edges"="0"
"Text"="0"
"Drawings, Hidden Model Edges"="0"
"Sketch, Over Defined"="255"
"Sketch, Fully Defined"="0"
"Sketch, Under Defined"="16711680"
"Dangling Dimension"="32896"
"Highlight"="16711935"
"Grid Lines, Minor"="12632256"
"Grid Lines, Major"="8421504"
"Viewport Background"="13813955"
"Drawings, Paper Color"="14411494"
"Drawings, Sheet Border"="0"
"Crosshairs, Drawings"="0"
"Selected Item 1"="16755027"
"Construction Geometry"="16711680"
"Temporary Graphics"="65535"
"Dynamic Highlight"="33023"
"Imported Annotations (Driving)"="0"
"Imported Annotations (Driven)"="8421504"
"Assembly, Edit Part"="16711680"
"Assembly, Hidden Lines of Edit Part"="8421504"
"Assembly, Non-Edit Parts"="12632256"
"Inactive Entities"="12632256"
"Sketch, Invalid Geometry"="55255"
"Sketch, Not Solved"="8421631"
"Active Selection Listbox"="8421631"
"Temporary Graphics, Shaded"="8454143"
"Top Gradient Color"="11179655"
"Bottom Gradient Color"="13813955"
"Surfaces, Open Edges"="12615680"
"Selected Item 2"="12615935"
"Selected Item 3"="16711808"
"Selected Face, Shaded"="16744448"
"HLR Edges in Shaded Mode"="0"
"X axis of Reference Triad"="255"
"Y axis of Reference Triad"="32768"
"Z axis of Reference Triad"="16711680"
"Sketch, Inactive"="8421504"
"Dimension, controlled by design table"="16711935"
"Selected Item 4"="3394560"
"Tree Item Normal"="14411494"
"Tree Item Selected"="16776960"
"Drawings, View Border"="12632256"
"Drawings, Background"="13813955"
"Drawings, Locked Focus"="8421504"
"Design Intent"="16711808"
"Annotations, Imported (Driving)"="0"
"Annotations Non-Imported (Driven)"="0"
"Assembly Interfence Volume"="255"
"Hidden Entity Selection Show Color"="33023"
"TextBox Handle Color In Note edit"="255"
"SWIFT Annotations"="10132543"
"SWIFT Under Constraint"="65535"
"SWIFT Fully Constraint"="65280"
"SWIFT Over Constraint"="255"
"Tolerance Analysis Annotations"="10132543"
"Temporary Sketch Draggin Color"="0"
"Spline Handle and Polygon Inactive Color"="8421504"
"Selected Item Missing Reference"="255"
"Handle Color In Note "="15790320"
"Drawings, Model Edges (SpeedPak)"="8421504"
"Drawings, Model Tangent Edges"="8421504"
"Mate Callout, Error"="8454016"
"Mate Callout, Warning"="8454143"
"Mate Callout, Healthy"="8421631"
"Temporary Sheet Metal Color"="255"
"Measure Selection"="65280"
"Drawings, Changed dimensions"="33023"
"Routing Adjoining Component Color"="33023"
"Selected weld path"="255"
"Envelope Components"="16777088"
"Assembly Visualization first"="255"
"Assembly Visualization second"="16711680"
"Assembly Visualization third"="65535"
"Assembly Visualization fourth"="65280"
"Assembly Visualization fifth"="16711808"
"Assembly Visualization sixth"="16777088"
"Zone Lines,Inactive"="12615935"
"Manipulator connection point color"="12754980"
"Temporary Graphics Add Material"="4259584"
"Temporary Graphics Remove Material"="16744703"
"Graphics Tree Item Normal"="0"
"Graphics Tree Item Selected"="16777088"
"Sketch, Shaded Contours"="10485760"
"Graphical Annotations"="16744576"
"Selected Item 5"="7209120"
"Selected Item 6"="6585610"
"Shading"="15717067"
"Wireframe/HLR/Shading"=""
"Custom Color 0"="16711935"
"Custom Color 1"="14411494"
"Custom Color 2"="16755027"
"Custom Color 3"="55255"
"Custom Color 4"="3394560"
"Custom Color 5"="13813955"
"Custom Color 6"="7209120"
"Custom Color 7"="6585610"
"Custom Color 8"="15717067"
"Custom Color 9"="15790320"
"Custom Color 10"="12754980"
"Custom Color 11"="0"
"Custom Color 12"="0"
"Custom Color 13"="0"
"Custom Color 14"="0"
"Custom Color 15"="0"
"Curvature0"="1000"
"Curvature1"="31.6"
"Curvature2"="4"
"Curvature3"="1.2"
"Curvature4"="1"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Compression]
"Save streams compressed"=dword:00000000
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\ContentManager]
"MigratedLegacy"=dword:00000005
"TreeViewHeight"=dword:000000d6
"ShowAsmOnlyParent"=""
"ShowAsmOnlyParentChild"="C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2021\\Design Library\\Assemblies"
"ShowAllParentChild"=""
"ShowFormToolParent"=""
"ShowFormToolParentChild"="C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2021\\Design Library\\Forming Tools"
"NotFormToolParentChild"=""
"CCLoginName"=""
"CCLoginPwd"=""
"ViewMode"=dword:00000000
"AppearanceDataViewMode"=dword:00000000
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Convert view to sketch]
"Dont show warning"=dword:00000000
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Crosshatch]
"Hatch angle"="0"
"Hatch scale"="1"
"Hatch name"="ANSI31 (Iron BrickStone)"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting\Default]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting\Default\Ambient]
"Color"=dword:00ffffff
"Ambient"="0.3"
"Diffuse"="0"
"Specular"="0"
"OnInSW"=dword:00000001
"OnInPV"=dword:00000000
"KeepInPW"=dword:00000000
"Locked"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting\Default\Directional1]
"Color"=dword:00ffffff
"Ambient"="0.1"
"Diffuse"="0.3"
"Specular"="0.3"
"OnInSW"=dword:00000001
"OnInPV"=dword:00000000
"KeepInPW"=dword:00000000
"Locked"=dword:00000001
"DirX"="7.1"
"DirY"="7.1"
"DirZ"="0"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting\Default\Directional2]
"Color"=dword:00ffffff
"Ambient"="0"
"Diffuse"="0.1"
"Specular"="0.3"
"OnInSW"=dword:00000001
"OnInPV"=dword:00000000
"KeepInPW"=dword:00000000
"Locked"=dword:00000001
"DirX"="-3.4"
"DirY"="6.1"
"DirZ"="-7.1"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Default Lighting\Default\Directional3]
"Color"=dword:00ffffff
"Ambient"="0"
"Diffuse"="0.2"
"Specular"="0.3"
"OnInSW"=dword:00000001
"OnInPV"=dword:00000000
"KeepInPW"=dword:00000000
"Locked"=dword:00000001
"DirX"="-9.2"
"DirY"="3.4"
"DirZ"="-1.8"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DesignCheck]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DesignCheck\CommonSettings]
"LastAccessedLearnChkFolderPath"=""
"LastAccessedLearnChkFileExtension"=""
"CurrentLanguage"="english"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DesignCheck\DesignCheckValidator]
"PreviousSelectedSWSTDList"="C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\ANSI.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\ISO.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\DIN.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\JIS.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\BSI.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\GOST.swstd*C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS (2)\\DsgnChk\\Data\\GB.swstd"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Dimensions]
"Standard"=dword:00000001
"Use show dims"=dword:00000000
"Display Missing Refs When Edited"=dword:00000001
"List Broken References"=dword:00000000
"14504_post_524620"=dword:00000000
"New Doc Dialog List State"=dword:00000000
"Use System Separator"=dword:00000001
"3D Annotations"=dword:00000001
"3D Notes"=dword:00000000
"Separator Char"=dword:0000002e
"Arrow Height"="0.001016"
"Arrow Width"="0.003302"
"Arrow Length"="0.00635"
"Witness Gap"="0.001"
"Witness Ext"="0.001"
"Arrow Style"=dword:00000001
"Virtual Sharp Display"=dword:00000002
"Snap Dims To Grid"=dword:00000000
"Hide Dangling Dims"=dword:00000000
"CenterMark Use Lines"=dword:00000001
"CenterMark Use Center Line"=dword:00000001
"CenterMark Size"="0.0025"
"Centerline extension"="0.002"
"Part Annotation Mask"=dword:3fa68cfa
"Part Annotation Mask2"=dword:20000409
"Assembly Annotation Mask"=dword:2f800cfa
"Assembly Annotation Mask2"=dword:3a000400
"Drawing Annotation Mask"=dword:2f800cfa
"Drawing Annotation Mask2"=dword:20000400
"Bend Note Style"=dword:00000000
"MRU Length Dimension1"="0.508"
"MRU Length Dimension2"="0.1905"
"MRU Length Dimension3"="0.18796"
"MRU Length Dimension4"="1.9685"
"MRU Length Dimension5"="0.254"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Direct Edit]
"Enable Direct Edit"=dword:00000000
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DockingPaneLayouts]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DockingPaneLayouts\DockingPaneLayout]
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DockingPaneLayouts\DockingPaneLayout\Pane-1]
"Type"=dword:00000002
"Horiz"=dword:00000001
"Panes"=dword:00000001
"Pane-1"=dword:00000002
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DockingPaneLayouts\DockingPaneLayout\Pane-2]
"Type"=dword:00000004
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\DockingPaneLayouts\DockingPaneLayout\Summary]
"Panes"=dword:00000002
"TopContainer"=dword:00000001
"Client"=dword:00000002
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Document Templates]
"Default Part template"="C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2021\\templates\\Part.prtdot"
"Default Assy template"="C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2021\\templates\\Assembly.asmdot"
"Default Draw Template"="C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2021\\templates\\Drawing.drwdot"
"Use Default Document Templates"=dword:00000001
"Templates Last Tab Used"="templates"
"Only Show Standard Formats"=dword:00000001
"Custom Part Document Template"=""
"Custom Assembly Document Template"=""
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Drawings]
"Last HoleTable Template Path"=""
"Spelling Option"=dword:00000000
"Bom Default Bom Type"=dword:00000000
"Max Halo Count"=dword:00000096
"Use 2005 To 2006SP1 Flag"=dword:00000001
"Bom Control Missing Rows"=dword:00000000
"Last BOM Template Path"=""
"Bom Configuration Use Doc Font"=dword:00000001
"Bom Default Following Assem Order"=dword:00000000
"Last Weldment Template Path"=""
"Bom Control Split Direction"=dword:00000000
"Bom Configuration Anchor Locked"=dword:00000001
"Bom Configuration Align Bottom"=dword:00000000
"Bom Configuration What To Show"=dword:00000000
"Bom Control Split Height"="0"
"Bom Default Display Same Name Configs As One Item"=dword:00000000
"Bom Contents Display At Top"=dword:00000000
"Bom Control ID From Assembly"=dword:00000001
"Bom Control Missing Row Display"=dword:00000001
"Bom Default Start Item Number"=dword:00000001
"Find or Replace Text"=dword:00000001
"Bom Configuration Anchor Type"=dword:00000000
"Bom Default Display As One Item"=dword:00000001
"Last Revision Template Path"=""
"Bom Control Split Table"=dword:00000000
"Bom Configuration Use Summ Info"=dword:00000000
"Bom Default Keep Item Number"=dword:00000000
"Background Process Enabled For Auto Tests"=dword:00000000
"Save Shaded Drawing Data"=dword:00000001
"Last General Template Path"=""
"Show sheet background as picture"=dword:00000000
"Show Sheet Format Dialog For New Sheet"=dword:00000000
"Repair component properties"=dword:00000000
"Disable Note/Dimension Inference"=dword:00000000
"Override quantiry column name in Bill Of Materials"=dword:00000000
"Overriden quantiry column name in Bill Of Materials"=""
"Auto space dimensions on delete"=dword:00000001
"Last Title Block Template Path"=""
"Display sketch solid hatch in back"=dword:00000000
"Section view Auto hatching"=dword:00000000
"Section view Exclude fasteners"=dword:00000000
"Section view Show excluded fasteners"=dword:00000000
"Breakout section Auto hatching"=dword:00000000
"Breakout section Exclude fasteners"=dword:00000000
"Show rapid dimension manipulator"=dword:00000001
"Last WeldTable Template Path"=""
"Move to back drawing sketch pictures"=dword:00000000
"Last BendTable Template Path"=""
"Autoinsert Magnet Lines"=dword:00000001
"Eliminate duplicate notes on insert model items"=dword:00000001
"Disable note merging"=dword:00000001
"Last PunchTable Template Path"=""
"Bom Default Following Sub-Assem Order"=dword:00000000
"Reuse view letters"=dword:00000000
"SectionXpert First Section Type"=dword:00000000
"SectionXpert Half Section Type"=dword:00000000
"SectionXpert Preview First Section"=dword:00000000
"SectionXpert Auto Flip"=dword:00000000
"Replace Model"=dword:00000000
"Magnet Line Style"=dword:ffffffff
"Edge quality for shaded views"=dword:00000000
"Mark Dimension for Drawing"=dword:00000001
"ShowViewPalette"=dword:00000001
"Show Zone Lines"=dword:00000000
"Auto scale 3 view"=dword:00000001
"Detail Size"="2"
"Show Reference Geometry Name"=dword:00000000
"Print RapidDraft Watermark"=dword:00000001
"Eliminate Duplicate Dims"=dword:00000001
"Details as Circles"=dword:00000000
"Display Mode"=dword:00000002
"Tangent Edges"=dword:00000000
"Tangent Edges With Font"=dword:00000000
"Fast HLR/HLG"=dword:00000000
"HLR edges when shaded"=dword:00000000
"Auto regen override"=dword:00000000
"Print hatching"=dword:00000000
"Line Style"="BYLAYER"
"Line Color"=dword:ffffffff
"Line Width"=dword:00000009
"Do not warn for model load"=dword:00000001
"Auto Dim Placement"=dword:00000001
"Display View Borders"=dword:00000000
"Dynamic drawing view activation"=dword:00000000
"First Angle"=dword:00000000
"Tangent Edges Dialog"=dword:00000001
"Auto regen views"=dword:00000001
"Link Dim Text"=dword:00000001
"Detail Hatch Scale"=dword:00000000
"Clip detail view sketch"=dword:00000000
"Paper Scale1"="1"
"Paper Scale2"="1"
"Auto update BOM"=dword:00000001
"save as layer in pdf"=dword:00000000
"save as layer in EDRW"=dword:00000000
"save as layer in Tif"=dword:00000000
"Keep Replaced Component Item No."=dword:00000000
"Bom Sort Method"=dword:00000000
"Paragraph Auto Numbering"=dword:00000001
"Align Break With Parent View "=dword:00000001
"Break Line Style"=dword:00000001
"Detail View Outline Style"=dword:00000000
"Crop View Outline Style"=dword:00000000
"Break view Jagged Edge ShapeIntensity"="1"
"Detail view Jagged Outline ShapeIntensity"="0.5"
"Crop view Jagged outline ShapeIntensity"="0.5"
"Section view Randomize Scale"=dword:00000000
"Breakout section Randomize Scale"=dword:00000000
"Disallow creation of Mirror Views"=dword:00000000
"Allow editing of Templates for 3DPF's"=dword:00000001
"Line Color by Default"=dword:00000000
"Include Detailing Mode Data when saving"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Edges]
"Show Anti Alias Shaded Edges"=dword:00000001
"Use Silhouette Offset"=dword:00000001
"Tangent Edge Display With Font"=dword:00000000
"Tangent Edge Display Shortened With Font"=dword:00000000
"Tangent Edge Display Internal With Font"=dword:00000000
"Tangent Edge Display Thin With Font"=dword:00000000
"Tangent Edge Display Knife With Font"=dword:00000000
"Tangent Edge Display Combo With Font"=dword:00000000
"Tangent Edge Length Threshold"="0.002"
"Pick Hidden HLR"=dword:00000000
"Show Shaded Edges"=dword:00000001
"Dynamic Highlight"=dword:00000001
"Tangent Edge Display"=dword:00000001
"Hidden Line Display"=dword:00000001
"Pick Hidden WF"=dword:00000001
"Show Fullscene Anti Alias"=dword:00000000
"Optimize Shaded Edges For Thin Part"=dword:00000001
"Polygon Offset Factor"="1"
"Polygon Offset Units"="1"
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\eDrawings]
"Measure Okay"=dword:00000000
"Shaded Views"=dword:00000001
"Compressed"=dword:00000000
"Save Animations"=dword:00000001
"Save Animations To All Configs"=dword:00000000
"Recalculate Animations"=dword:00000001
"Save BOM"=dword:00000001
[HKEY_CURRENT_USER\Software\SolidWorks\SOLIDWORKS 2021\Export Settings]
"DXF/DWG Line Styles Option"=dword:00000000
"DXF/DWG 1:1 Scale Output"=dword:00000000
"DXF/DWG Don't Show Map"=dword:00000000
"Show STL Info on Save"=dword:00000001
"DXF/DWG 1:1 Scale Factor"="1"
"STL Binary File Format"=dword:00000001
"STL Preview"=dword:00000000
"Do not translate STL output data to positive space"=dword:00000000
"DXF/DWG Mapping"=dword:00000000
"TIF Image Type"=dword:00000001
"STEP Geometry Preference"=dword:00000000
"VRML Version"=dword:00000000
"TIF Compression Scheme"=dword:00000000
"DXF/DWG Font Option"=dword:00000000
"DXF/DWG Use Solidworks Layers"=dword:00000000
"X_T Assembly Save Format"=dword:00000000
"ACIS Output Geometry Preference"=dword:00000000
"X_T Output Schema"=dword:00000000
"STL Export Units"=dword:00000000
"DXF/DWG Mapping File Index"=dword:ffffffff
"STL Check For Interference"=dword:00000000
"STL Tessellation Angle Tolerance"="0.17453"
"TIF Paper Size"=dword:00000000
"SAT Units"=dword:00000000
"TIF Dpi"=dword:00000001
"Save all components of an assembly in one file for STL"=dword:00000000
"DXF/DWG Save As Format"=dword:00000003
"TIF Capture"=dword:00000000
"TIF Fit to scale"=dword:00000000
"Save Assembly As Part Options"=dword:00000001
"SAT Save Format"=dword:00000000
"VRML Export Units"=dword:00000002
"Save all components of an assembly in one file for VRML"=dword:00000001
"STL Tessellation Number"=dword:00000068
"DXF/DWG Enable export of splines as splines to dxf"=dword:00000001
"PDF Print Header Footer"=dword:00000000
"DXF/DWG Enable Entity End Point Merging"=dword:00000000
"PDF Embed Fonts"=dword:00000001
"PDF Dots Per Inch"=dword:00000060
"PDF Shaded Edges High Quality"=dword:00000000
"PDF Line Quality"=dword:00000000
"PDF RealView Graphics"=dword:00000000
"PDF Export In Color"=dword:00000001
"PDF Use Current Print Line Weights"=dword:00000001
"DXF/DWG 0.0 Merging Distance"="0"
"DXF/DWG Use Base Sheet Scale"=dword:00000000
"DXF/DWG Remove Bend Lines For FlatpatternToDXF"=dword:00000001
"SAT Face Edge Props"=dword:00000001
"SAT Split Periodic"=dword:00000001
"STEP Face Edge Props"=dword:00000001
"STEP Split Periodic"=dword:00000001
"STEP 3D Curve Features"=dword:00000000
"DXF/DWG Enable High Quality DWG Export"=dword:00000000
"JPEG compression"=dword:00000001
"TIF Remove background"=dword:00000000
"TIF All sheets"=dword:00000000
"TIF Sheet dimensions"=dword:00000000
"Export Part as Flat Pattern Bodies"=dword:00000000
"SAT Mult Lumps"=dword:00000000
"DXF/DWG Enable Export of Entities On Hidden layers"=dword:00000001
"View PDF After Saving"=dword:00000000
"Export only model geometry"=dword:00000001
"DXF/DWG Enable Export of All Sheets To Paper Space"=dword:00000000
"View TIF After Saving"=dword:00000000
"TIF Do text padding"=dword:00000000
"View PNG After Saving"=dword:00000000
"View JPEG After Saving"=dword:00000000
"IGES Split Periodic"=dword:00000001
"AMF File Format Compression"=dword:00000000
"AMF File Format Materials"=dword:00000001
"AMF File Format Colors"=dword:00000001
"PDF DPI for OLE images"=dword:00000000
"IFC4 export preference"=dword:00000000
"DXF/DWG Number of sheets to export"=dword:00000002
"Save IFC file format"=dword:00000017
"TIF Paper Width"="0.2159"
"TIF Paper Height"="0.2794"
"TIF User Scale"=dword:00000064
"OmniClass and Uniclass selection"=""
"IFC OmniClass and Uniclass export preference"=dword:00000000
"3MF File Format Materials"=dword:00000000
"3MF File Format Appearances"=dword:00000000
"3MF File Format Decals"=dword:00000000
"3MF File Format Slices"=dword:00000000
"3MF File Preview"=dword:00000000
"IFC OmniClass export option"=dword:00000000
"IFC UniClass2 export option"=dword:00000000
"IFC Custom properties export option"=dword:00000000
"IFC Mass and Material properties export option"=dword:00000000
"PDF Include Bookmarks"=dword:00000001
"STEP Attachment Type Preference"=dword:00000000
"Include PMI"=dword:00000000
"Graphical Body"=dword:00000000
"ASMSLDPRT Exclude Components By Visibility"=dword:00000000
"ASMSLDPRT Exclude Components By Visibility Threshold"="0.9"
"ASMSLDPRT Exclude Components By BBox Volume"=dword:00000000
"ASMSLDPRT Exclude Components By BBox Volume Threshold"="0.000125"
"ASMSLDPRT Exclude If Toolbox Components"=dword:00000000
"ASMSLDPRT Include Reference Geometry"=dword:00000001
"ASMSLDPRT Include Unabsorbed Sketches"=dword:00000001
"ASMSLDPRT Include Mass Properties"=dword:00000001
"ASMSLDPRT Include Magnetic Mates"=dword:00000001
"ASMSLDPRT Merge Bodies"=dword:00000000
"PLY Binary File Format"=dword:00000001
"PLY Export Units"=dword:00000000
"PLY Tessellation Number"=dword:00000068
"PLY Tessellation Angle Tolerance"="0.17453"
"Ply Preview"=dword:00000000
"PLY File Format Colors"=dword:00000001
"DXF/DWG Mapping File1"=""
"DXF/DWG Mapping File2"=""
"DXF/DWG Mapping File3"=""