forked from RogerSanders/Exodus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Exodus.sln
1827 lines (1827 loc) · 167 KB
/
Exodus.sln
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2042
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Devices", "Devices", "{3C6618C6-E66E-4059-AAA7-6D926D6BFC27}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Support Libraries", "Support Libraries", "{B05E2DF4-6943-44EF-B15F-B5E12AC308D8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Exodus", "Exodus", "{8C5BB0C8-1CD6-407A-974E-CAEBD04BE6C9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions", "{3FE98B21-E571-4D33-A7CA-65B8A25237E8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Exodus", "Exodus\Exodus.vcxproj", "{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZIP", "Support Libraries\ZIP\ZIP.vcxproj", "{AA212D36-1347-47AB-B658-7CE6BA7FA425}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Stream", "Support Libraries\Stream\Stream.vcxproj", "{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Debug", "Support Libraries\Debug\Debug.vcxproj", "{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Image", "Support Libraries\Image\Image.vcxproj", "{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeviceInterface", "ExodusSDK\DeviceInterface\DeviceInterface.vcxproj", "{DB781392-9752-4607-B90C-614FA1670D47}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Processor", "ExodusSDK\Processor\Processor.vcxproj", "{47967EF3-5853-4BC8-B863-E6674079871B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "M68000", "Devices\M68000\M68000.vcxproj", "{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DataConversion", "Support Libraries\DataConversion\DataConversion.vcxproj", "{024597D2-185B-4F7E-98D7-CD530BDCDD1D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AudioStream", "Support Libraries\AudioStream\AudioStream.vcxproj", "{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ThinContainers", "Support Libraries\ThinContainers\ThinContainers.vcxproj", "{E39955EE-E2B3-4D00-A72F-7B7479223547}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ThreadLib", "Support Libraries\ThreadLib\ThreadLib.vcxproj", "{2615B12B-BA5F-4C84-97EE-81761C51BE03}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WindowsSupport", "Support Libraries\WindowsSupport\WindowsSupport.vcxproj", "{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Z80", "Devices\Z80\Z80.vcxproj", "{5E4909D4-AD1A-433A-95C3-42F464A0B262}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "YM2612", "Devices\YM2612\YM2612.vcxproj", "{0A21EEFB-B7D2-4321-B109-E1ADEA742390}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SN76489", "Devices\SN76489\SN76489.vcxproj", "{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "315-5313", "Devices\315-5313\315-5313.vcxproj", "{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Memory", "Devices\Memory\Memory.vcxproj", "{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MD1600IO", "Devices\MD1600IO\MD1600IO.vcxproj", "{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Device", "ExodusSDK\Device\Device.vcxproj", "{36693E5E-1462-4CFC-A240-2CCAA6483833}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StreamInterface", "Support Libraries\StreamInterface\StreamInterface.vcxproj", "{264C9955-60D8-46CE-841F-2A311B2311E7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HierarchicalStorageInterface", "Support Libraries\HierarchicalStorageInterface\HierarchicalStorageInterface.vcxproj", "{9EDC036B-E856-4066-B306-807394E4B512}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HierarchicalStorage", "Support Libraries\HierarchicalStorage\HierarchicalStorage.vcxproj", "{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageInterface", "Support Libraries\ImageInterface\ImageInterface.vcxproj", "{49625DE6-B44B-456D-8B58-A7F60A3660F2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TimedBuffers", "ExodusSDK\TimedBuffers\TimedBuffers.vcxproj", "{FB7930C5-1BA7-4875-BFC7-F13722B46E66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MDExtensions", "Extensions\MDExtensions\MDExtensions.vcxproj", "{ED1DDB87-D9B0-4B1E-A824-C3F290E6055B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Extension", "ExodusSDK\Extension\Extension.vcxproj", "{8196F896-D9AE-4F6B-9B5A-AF2553EA0B32}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SN76489Menus", "Extensions\SN76489Menus\SN76489Menus.vcxproj", "{681A9148-0658-4231-90A5-1A5C0979368E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "315-5313Menus", "Extensions\315-5313Menus\315-5313Menus.vcxproj", "{6E27FE4E-B9B9-4CA4-8D73-1497B0B18900}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "M68000Menus", "Extensions\M68000Menus\M68000Menus.vcxproj", "{6C3D8959-F1B9-49F9-94AE-7149A4A7EA89}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MemoryMenus", "Extensions\MemoryMenus\MemoryMenus.vcxproj", "{5C7F522A-4E61-46A9-9EC8-949BD2A420C7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ProcessorMenus", "Extensions\ProcessorMenus\ProcessorMenus.vcxproj", "{8177EA5A-96C1-4595-809D-8B6600ED5666}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "YM2612Menus", "Extensions\YM2612Menus\YM2612Menus.vcxproj", "{7A58A2FA-B0C5-4C72-89A0-A88C11FC80B2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Z80Menus", "Extensions\Z80Menus\Z80Menus.vcxproj", "{CAA004CC-FC15-4385-8517-A61B130B40DD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExtensionInterface", "ExodusSDK\ExtensionInterface\ExtensionInterface.vcxproj", "{1A40C5A2-95ED-4A3F-BE41-AD027D6E1C6C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExodusSystemMenus", "Extensions\ExodusSystemMenus\ExodusSystemMenus.vcxproj", "{CE912273-AAB0-49E6-89AD-4E8AAFFC8102}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WindowsControls", "Support Libraries\WindowsControls\WindowsControls.vcxproj", "{952D92A9-1E79-420C-8A8A-C6F230E819B5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GenericAccessMenus", "Extensions\GenericAccessMenus\GenericAccessMenus.vcxproj", "{7E40A1DF-DE81-455A-AD7B-8505372F1FDC}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GenericAccess", "ExodusSDK\GenericAccess\GenericAccess.vcxproj", "{2F6DD00A-03EB-4FE1-95BE-F1AF9232F302}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "System", "System\System.vcxproj", "{EF94FCA0-434C-4145-9ED7-E4DBEB168E16}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SystemInterface", "ExodusSDK\SystemInterface\SystemInterface.vcxproj", "{B105790C-254B-4A4F-ABFD-D11F7DE1531D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CallbackSupport", "Support Libraries\CallbackSupport\CallbackSupport.vcxproj", "{13A10ED6-BBEA-48F1-9DE0-6BED242A3EBD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MarshalSupport", "Support Libraries\MarshalSupport\MarshalSupport.vcxproj", "{D70F521E-591C-4E77-9AF4-C8A47E813424}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Documentation", "_Documentation", "{C553B51D-3C26-49F4-8881-DB996CD5A518}"
ProjectSection(SolutionItems) = preProject
Support Libraries\_Documentation\Overview.xml = Support Libraries\_Documentation\Overview.xml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Documentation", "_Documentation", "{35C51F87-D5D3-4AAD-A65B-5D52FCA32CC9}"
ProjectSection(SolutionItems) = preProject
ExodusSDK\_Documentation\Overview.xml = ExodusSDK\_Documentation\Overview.xml
ExodusSDK\_Documentation\PluginModel.xml = ExodusSDK\_Documentation\PluginModel.xml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{635C531F-B575-4B10-BCDF-140887341676}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Exodus SDK", "Exodus SDK", "{62F69EDF-1BE4-4F46-B0B1-D54453CEB532}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Documentation", "_Documentation", "{86F1CEA1-24E1-43FE-AE59-42F3251519C7}"
ProjectSection(SolutionItems) = preProject
_Documentation\ExodusSDKProject.xml = _Documentation\ExodusSDKProject.xml
_Documentation\TableOfContents.xml = _Documentation\TableOfContents.xml
_Documentation\Welcome.xml = _Documentation\Welcome.xml
_Documentation\XML Schema\XMLDocSchema.xsd = _Documentation\XML Schema\XMLDocSchema.xsd
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug - LLVM|Win32 = Debug - LLVM|Win32
Debug - LLVM|x64 = Debug - LLVM|x64
Debug - Static|Win32 = Debug - Static|Win32
Debug - Static|x64 = Debug - Static|x64
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release - LLVM|Win32 = Release - LLVM|Win32
Release - LLVM|x64 = Release - LLVM|x64
Release - PGOInstrument|Win32 = Release - PGOInstrument|Win32
Release - PGOInstrument|x64 = Release - PGOInstrument|x64
Release - PGOOptimize|Win32 = Release - PGOOptimize|Win32
Release - PGOOptimize|x64 = Release - PGOOptimize|x64
Release - PGORebuildOptimized|Win32 = Release - PGORebuildOptimized|Win32
Release - PGORebuildOptimized|x64 = Release - PGORebuildOptimized|x64
Release - PGOUpdate|Win32 = Release - PGOUpdate|Win32
Release - PGOUpdate|x64 = Release - PGOUpdate|x64
Release - Static|Win32 = Release - Static|Win32
Release - Static|x64 = Release - Static|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug - Static|x64.Build.0 = Debug - Static|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug|Win32.ActiveCfg = Debug|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug|Win32.Build.0 = Debug|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug|x64.ActiveCfg = Debug|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Debug|x64.Build.0 = Debug|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - Static|Win32.Build.0 = Release - Static|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - Static|x64.ActiveCfg = Release - Static|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release - Static|x64.Build.0 = Release - Static|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release|Win32.ActiveCfg = Release|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release|Win32.Build.0 = Release|Win32
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release|x64.ActiveCfg = Release|x64
{6082AC4E-8B0E-4CB6-8FD1-7B20C39FE7FE}.Release|x64.Build.0 = Release|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - Static|Win32.Build.0 = Debug|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - Static|x64.ActiveCfg = Debug|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug - Static|x64.Build.0 = Debug|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug|Win32.ActiveCfg = Debug|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug|Win32.Build.0 = Debug|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug|x64.ActiveCfg = Debug|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Debug|x64.Build.0 = Debug|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - Static|Win32.ActiveCfg = Release|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - Static|Win32.Build.0 = Release|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - Static|x64.ActiveCfg = Release|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release - Static|x64.Build.0 = Release|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release|Win32.ActiveCfg = Release|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release|Win32.Build.0 = Release|Win32
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release|x64.ActiveCfg = Release|x64
{AA212D36-1347-47AB-B658-7CE6BA7FA425}.Release|x64.Build.0 = Release|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - Static|Win32.Build.0 = Debug|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - Static|x64.ActiveCfg = Debug|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug - Static|x64.Build.0 = Debug|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug|Win32.ActiveCfg = Debug|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug|Win32.Build.0 = Debug|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug|x64.ActiveCfg = Debug|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Debug|x64.Build.0 = Debug|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - Static|Win32.ActiveCfg = Release|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - Static|Win32.Build.0 = Release|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - Static|x64.ActiveCfg = Release|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release - Static|x64.Build.0 = Release|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release|Win32.ActiveCfg = Release|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release|Win32.Build.0 = Release|Win32
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release|x64.ActiveCfg = Release|x64
{D4F63DCA-8FA8-4FD3-B449-DBB7E5AD7FFB}.Release|x64.Build.0 = Release|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - Static|Win32.Build.0 = Debug|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - Static|x64.ActiveCfg = Debug|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug - Static|x64.Build.0 = Debug|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug|Win32.ActiveCfg = Debug|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug|Win32.Build.0 = Debug|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug|x64.ActiveCfg = Debug|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Debug|x64.Build.0 = Debug|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - Static|Win32.ActiveCfg = Release|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - Static|Win32.Build.0 = Release|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - Static|x64.ActiveCfg = Release|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release - Static|x64.Build.0 = Release|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release|Win32.ActiveCfg = Release|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release|Win32.Build.0 = Release|Win32
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release|x64.ActiveCfg = Release|x64
{1EBAFC85-6457-4DE8-AF7F-9605FEA6E11D}.Release|x64.Build.0 = Release|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - Static|Win32.Build.0 = Debug|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - Static|x64.ActiveCfg = Debug|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug - Static|x64.Build.0 = Debug|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug|Win32.ActiveCfg = Debug|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug|Win32.Build.0 = Debug|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug|x64.ActiveCfg = Debug|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Debug|x64.Build.0 = Debug|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - Static|Win32.ActiveCfg = Release|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - Static|Win32.Build.0 = Release|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - Static|x64.ActiveCfg = Release|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release - Static|x64.Build.0 = Release|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release|Win32.ActiveCfg = Release|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release|Win32.Build.0 = Release|Win32
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release|x64.ActiveCfg = Release|x64
{7E84CDBB-E45F-4CCE-8AE9-3A74DEAA0881}.Release|x64.Build.0 = Release|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - Static|Win32.Build.0 = Debug|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - Static|x64.ActiveCfg = Debug|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug - Static|x64.Build.0 = Debug|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug|Win32.ActiveCfg = Debug|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug|Win32.Build.0 = Debug|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Debug|x64.ActiveCfg = Debug|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Debug|x64.Build.0 = Debug|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - Static|Win32.ActiveCfg = Release|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - Static|Win32.Build.0 = Release|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release - Static|x64.ActiveCfg = Release|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release - Static|x64.Build.0 = Release|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release|Win32.ActiveCfg = Release|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release|Win32.Build.0 = Release|Win32
{DB781392-9752-4607-B90C-614FA1670D47}.Release|x64.ActiveCfg = Release|x64
{DB781392-9752-4607-B90C-614FA1670D47}.Release|x64.Build.0 = Release|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - Static|Win32.Build.0 = Debug|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - Static|x64.ActiveCfg = Debug|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug - Static|x64.Build.0 = Debug|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug|Win32.ActiveCfg = Debug|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug|Win32.Build.0 = Debug|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug|x64.ActiveCfg = Debug|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Debug|x64.Build.0 = Debug|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - Static|Win32.ActiveCfg = Release|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - Static|Win32.Build.0 = Release|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - Static|x64.ActiveCfg = Release|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release - Static|x64.Build.0 = Release|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release|Win32.ActiveCfg = Release|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release|Win32.Build.0 = Release|Win32
{47967EF3-5853-4BC8-B863-E6674079871B}.Release|x64.ActiveCfg = Release|x64
{47967EF3-5853-4BC8-B863-E6674079871B}.Release|x64.Build.0 = Release|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug - Static|x64.Build.0 = Debug - Static|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug|Win32.ActiveCfg = Debug|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug|Win32.Build.0 = Debug|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug|x64.ActiveCfg = Debug|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Debug|x64.Build.0 = Debug|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - Static|Win32.Build.0 = Release - Static|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - Static|x64.ActiveCfg = Release - Static|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release - Static|x64.Build.0 = Release - Static|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release|Win32.ActiveCfg = Release|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release|Win32.Build.0 = Release|Win32
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release|x64.ActiveCfg = Release|x64
{C3FAF9BB-570F-4FEC-B918-F8EA28B12602}.Release|x64.Build.0 = Release|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - Static|Win32.Build.0 = Debug|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - Static|x64.ActiveCfg = Debug|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug - Static|x64.Build.0 = Debug|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug|Win32.ActiveCfg = Debug|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug|Win32.Build.0 = Debug|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug|x64.ActiveCfg = Debug|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Debug|x64.Build.0 = Debug|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - Static|Win32.ActiveCfg = Release|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - Static|Win32.Build.0 = Release|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - Static|x64.ActiveCfg = Release|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release - Static|x64.Build.0 = Release|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release|Win32.ActiveCfg = Release|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release|Win32.Build.0 = Release|Win32
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release|x64.ActiveCfg = Release|x64
{024597D2-185B-4F7E-98D7-CD530BDCDD1D}.Release|x64.Build.0 = Release|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - Static|Win32.Build.0 = Debug|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - Static|x64.ActiveCfg = Debug|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug - Static|x64.Build.0 = Debug|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug|Win32.ActiveCfg = Debug|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug|Win32.Build.0 = Debug|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug|x64.ActiveCfg = Debug|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Debug|x64.Build.0 = Debug|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - Static|Win32.ActiveCfg = Release|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - Static|Win32.Build.0 = Release|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - Static|x64.ActiveCfg = Release|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release - Static|x64.Build.0 = Release|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release|Win32.ActiveCfg = Release|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release|Win32.Build.0 = Release|Win32
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release|x64.ActiveCfg = Release|x64
{9808C6CB-FC58-4979-8B59-2CB5E0D0F318}.Release|x64.Build.0 = Release|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - Static|Win32.Build.0 = Debug|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - Static|x64.ActiveCfg = Debug|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug - Static|x64.Build.0 = Debug|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug|Win32.ActiveCfg = Debug|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug|Win32.Build.0 = Debug|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug|x64.ActiveCfg = Debug|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Debug|x64.Build.0 = Debug|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - Static|Win32.ActiveCfg = Release|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - Static|Win32.Build.0 = Release|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - Static|x64.ActiveCfg = Release|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release - Static|x64.Build.0 = Release|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release|Win32.ActiveCfg = Release|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release|Win32.Build.0 = Release|Win32
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release|x64.ActiveCfg = Release|x64
{E39955EE-E2B3-4D00-A72F-7B7479223547}.Release|x64.Build.0 = Release|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - Static|Win32.Build.0 = Debug|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - Static|x64.ActiveCfg = Debug|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug - Static|x64.Build.0 = Debug|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug|Win32.ActiveCfg = Debug|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug|Win32.Build.0 = Debug|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug|x64.ActiveCfg = Debug|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Debug|x64.Build.0 = Debug|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - Static|Win32.ActiveCfg = Release|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - Static|Win32.Build.0 = Release|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - Static|x64.ActiveCfg = Release|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release - Static|x64.Build.0 = Release|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release|Win32.ActiveCfg = Release|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release|Win32.Build.0 = Release|Win32
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release|x64.ActiveCfg = Release|x64
{2615B12B-BA5F-4C84-97EE-81761C51BE03}.Release|x64.Build.0 = Release|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - Static|Win32.Build.0 = Debug|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - Static|x64.ActiveCfg = Debug|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug - Static|x64.Build.0 = Debug|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug|Win32.ActiveCfg = Debug|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug|Win32.Build.0 = Debug|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug|x64.ActiveCfg = Debug|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Debug|x64.Build.0 = Debug|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - Static|Win32.ActiveCfg = Release|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - Static|Win32.Build.0 = Release|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - Static|x64.ActiveCfg = Release|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release - Static|x64.Build.0 = Release|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release|Win32.ActiveCfg = Release|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release|Win32.Build.0 = Release|Win32
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release|x64.ActiveCfg = Release|x64
{5AC3CB2C-0A1A-4E29-8A07-2BDED302611B}.Release|x64.Build.0 = Release|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug - Static|x64.Build.0 = Debug - Static|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug|Win32.ActiveCfg = Debug|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug|Win32.Build.0 = Debug|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug|x64.ActiveCfg = Debug|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Debug|x64.Build.0 = Debug|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - Static|Win32.Build.0 = Release - Static|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - Static|x64.ActiveCfg = Release - Static|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release - Static|x64.Build.0 = Release - Static|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release|Win32.ActiveCfg = Release|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release|Win32.Build.0 = Release|Win32
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release|x64.ActiveCfg = Release|x64
{5E4909D4-AD1A-433A-95C3-42F464A0B262}.Release|x64.Build.0 = Release|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug - Static|x64.Build.0 = Debug - Static|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug|Win32.ActiveCfg = Debug|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug|Win32.Build.0 = Debug|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug|x64.ActiveCfg = Debug|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Debug|x64.Build.0 = Debug|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - Static|Win32.Build.0 = Release - Static|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - Static|x64.ActiveCfg = Release - Static|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release - Static|x64.Build.0 = Release - Static|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release|Win32.ActiveCfg = Release|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release|Win32.Build.0 = Release|Win32
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release|x64.ActiveCfg = Release|x64
{0A21EEFB-B7D2-4321-B109-E1ADEA742390}.Release|x64.Build.0 = Release|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug - Static|x64.Build.0 = Debug - Static|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug|Win32.ActiveCfg = Debug|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug|Win32.Build.0 = Debug|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug|x64.ActiveCfg = Debug|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Debug|x64.Build.0 = Debug|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - Static|Win32.Build.0 = Release - Static|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - Static|x64.ActiveCfg = Release - Static|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release - Static|x64.Build.0 = Release - Static|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release|Win32.ActiveCfg = Release|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release|Win32.Build.0 = Release|Win32
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release|x64.ActiveCfg = Release|x64
{3D51BC72-A1E2-43BF-8C14-1A9C1A036E9D}.Release|x64.Build.0 = Release|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug - Static|x64.Build.0 = Debug - Static|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug|Win32.ActiveCfg = Debug|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug|Win32.Build.0 = Debug|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug|x64.ActiveCfg = Debug|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Debug|x64.Build.0 = Debug|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - Static|Win32.Build.0 = Release - Static|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - Static|x64.ActiveCfg = Release - Static|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release - Static|x64.Build.0 = Release - Static|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release|Win32.ActiveCfg = Release|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release|Win32.Build.0 = Release|Win32
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release|x64.ActiveCfg = Release|x64
{B8E521EE-2706-4EB7-A866-BBFEC8D38D76}.Release|x64.Build.0 = Release|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug - Static|x64.Build.0 = Debug - Static|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug|Win32.ActiveCfg = Debug|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug|Win32.Build.0 = Debug|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug|x64.ActiveCfg = Debug|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Debug|x64.Build.0 = Debug|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - Static|Win32.Build.0 = Release - Static|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - Static|x64.ActiveCfg = Release - Static|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release - Static|x64.Build.0 = Release - Static|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release|Win32.ActiveCfg = Release|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release|Win32.Build.0 = Release|Win32
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release|x64.ActiveCfg = Release|x64
{AFCDD48A-A35B-4D8F-8211-AD7A354D02C3}.Release|x64.Build.0 = Release|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - Static|Win32.ActiveCfg = Debug - Static|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - Static|Win32.Build.0 = Debug - Static|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - Static|x64.ActiveCfg = Debug - Static|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug - Static|x64.Build.0 = Debug - Static|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug|Win32.ActiveCfg = Debug|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug|Win32.Build.0 = Debug|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug|x64.ActiveCfg = Debug|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Debug|x64.Build.0 = Debug|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGOOptimize|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOOptimize|Win32.Build.0 = Release - PGOOptimize|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOOptimize|x64.ActiveCfg = Release - PGOOptimize|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOOptimize|x64.Build.0 = Release - PGOOptimize|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGOUpdate|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOUpdate|Win32.Build.0 = Release - PGOUpdate|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOUpdate|x64.ActiveCfg = Release - PGOUpdate|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - PGOUpdate|x64.Build.0 = Release - PGOUpdate|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - Static|Win32.ActiveCfg = Release - Static|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - Static|Win32.Build.0 = Release - Static|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - Static|x64.ActiveCfg = Release - Static|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release - Static|x64.Build.0 = Release - Static|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release|Win32.ActiveCfg = Release|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release|Win32.Build.0 = Release|Win32
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release|x64.ActiveCfg = Release|x64
{ED44D3FC-B501-48CD-A0F1-6BA1F6063576}.Release|x64.Build.0 = Release|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - Static|Win32.Build.0 = Debug|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - Static|x64.ActiveCfg = Debug|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug - Static|x64.Build.0 = Debug|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug|Win32.ActiveCfg = Debug|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug|Win32.Build.0 = Debug|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug|x64.ActiveCfg = Debug|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Debug|x64.Build.0 = Debug|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - Static|Win32.ActiveCfg = Release|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - Static|Win32.Build.0 = Release|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - Static|x64.ActiveCfg = Release|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release - Static|x64.Build.0 = Release|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release|Win32.ActiveCfg = Release|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release|Win32.Build.0 = Release|Win32
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release|x64.ActiveCfg = Release|x64
{36693E5E-1462-4CFC-A240-2CCAA6483833}.Release|x64.Build.0 = Release|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - Static|Win32.Build.0 = Debug|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - Static|x64.ActiveCfg = Debug|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug - Static|x64.Build.0 = Debug|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug|Win32.ActiveCfg = Debug|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug|Win32.Build.0 = Debug|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug|x64.ActiveCfg = Debug|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Debug|x64.Build.0 = Debug|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - Static|Win32.ActiveCfg = Release|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - Static|Win32.Build.0 = Release|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - Static|x64.ActiveCfg = Release|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release - Static|x64.Build.0 = Release|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release|Win32.ActiveCfg = Release|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release|Win32.Build.0 = Release|Win32
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release|x64.ActiveCfg = Release|x64
{264C9955-60D8-46CE-841F-2A311B2311E7}.Release|x64.Build.0 = Release|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - Static|Win32.Build.0 = Debug|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - Static|x64.ActiveCfg = Debug|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug - Static|x64.Build.0 = Debug|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug|Win32.ActiveCfg = Debug|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug|Win32.Build.0 = Debug|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Debug|x64.ActiveCfg = Debug|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Debug|x64.Build.0 = Debug|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - Static|Win32.ActiveCfg = Release|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - Static|Win32.Build.0 = Release|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release - Static|x64.ActiveCfg = Release|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release - Static|x64.Build.0 = Release|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release|Win32.ActiveCfg = Release|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release|Win32.Build.0 = Release|Win32
{9EDC036B-E856-4066-B306-807394E4B512}.Release|x64.ActiveCfg = Release|x64
{9EDC036B-E856-4066-B306-807394E4B512}.Release|x64.Build.0 = Release|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - LLVM|Win32.ActiveCfg = Debug - LLVM|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - LLVM|Win32.Build.0 = Debug - LLVM|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - LLVM|x64.ActiveCfg = Debug - LLVM|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - LLVM|x64.Build.0 = Debug - LLVM|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - Static|Win32.ActiveCfg = Debug|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - Static|Win32.Build.0 = Debug|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - Static|x64.ActiveCfg = Debug|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug - Static|x64.Build.0 = Debug|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug|Win32.ActiveCfg = Debug|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug|Win32.Build.0 = Debug|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug|x64.ActiveCfg = Debug|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Debug|x64.Build.0 = Debug|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - LLVM|Win32.ActiveCfg = Release - LLVM|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - LLVM|Win32.Build.0 = Release - LLVM|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - LLVM|x64.ActiveCfg = Release - LLVM|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - LLVM|x64.Build.0 = Release - LLVM|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOInstrument|Win32.ActiveCfg = Release - PGOInstrument|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOInstrument|Win32.Build.0 = Release - PGOInstrument|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOInstrument|x64.ActiveCfg = Release - PGOInstrument|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOInstrument|x64.Build.0 = Release - PGOInstrument|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOOptimize|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOOptimize|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGORebuildOptimized|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGORebuildOptimized|Win32.Build.0 = Release - PGORebuildOptimized|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGORebuildOptimized|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGORebuildOptimized|x64.Build.0 = Release - PGORebuildOptimized|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOUpdate|Win32.ActiveCfg = Release - PGORebuildOptimized|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - PGOUpdate|x64.ActiveCfg = Release - PGORebuildOptimized|x64
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - Static|Win32.ActiveCfg = Release|Win32
{ECC567B9-0DD5-4130-9685-CB9B5C6BD96E}.Release - Static|Win32.Build.0 = Release|Win32