Microsoft.Azure.PowerShell.Cmdlets.Accounts.deps.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
{
  "runtimeTarget": {
    "name": ".NETStandard,Version=v2.0/",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETStandard,Version=v2.0": {},
    ".NETStandard,Version=v2.0/": {
      "Microsoft.Azure.PowerShell.Cmdlets.Accounts/1.0.0": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Hyak.Common": "1.2.2",
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Azure.PowerShell.Authentication": "1.0.0",
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Authentication.ResourceManager": "1.0.0",
          "Microsoft.Azure.PowerShell.Authenticators": "1.0.0",
          "Microsoft.Azure.PowerShell.Clients.Aks": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Authorization": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Compute": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Graph.Rbac": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.KeyVault": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Monitor": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Network": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.PolicyInsights": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.ResourceManager": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Storage.Management": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Websites": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common.Share": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Storage": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Strategies": "1.3.76-preview",
          "Microsoft.CSharp": "4.7.0",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "NETStandard.Library": "2.0.3",
          "Newtonsoft.Json": "13.0.2",
          "PowerShellStandard.Library": "5.1.0",
          "System.Security.Permissions": "4.7.0",
          "FuzzySharp": "1.0.4.0"
        },
        "runtime": {
          "Microsoft.Azure.PowerShell.Cmdlets.Accounts.dll": {}
        }
      },
      "Azure.Core/1.31.0": {
        "dependencies": {
          "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
          "System.Diagnostics.DiagnosticSource": "4.6.0",
          "System.Memory.Data": "1.0.2",
          "System.Numerics.Vectors": "4.5.0",
          "System.Text.Encodings.Web": "4.7.2",
          "System.Text.Json": "4.7.2",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/Azure.Core.dll": {
            "assemblyVersion": "1.31.0.0",
            "fileVersion": "1.3100.23.21004"
          }
        }
      },
      "Azure.Identity/1.6.1": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Microsoft.Identity.Client": "4.49.1",
          "Microsoft.Identity.Client.Extensions.Msal": "2.23.0",
          "System.Memory": "4.5.4",
          "System.Security.Cryptography.ProtectedData": "4.7.0",
          "System.Text.Json": "4.7.2",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/Azure.Identity.dll": {
            "assemblyVersion": "1.6.1.0",
            "fileVersion": "1.600.122.40803"
          }
        }
      },
      "Azure.Identity.BrokeredAuthentication/1.0.0-beta.3": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Azure.Identity": "1.6.1",
          "Microsoft.Identity.Client": "4.49.1",
          "Microsoft.Identity.Client.Broker": "4.46.0-preview",
          "Microsoft.Identity.Client.Extensions.Msal": "2.23.0",
          "System.Memory": "4.5.4",
          "System.Security.Cryptography.ProtectedData": "4.7.0",
          "System.Text.Json": "4.7.2",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/Azure.Identity.BrokeredAuthentication.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.22.40906"
          }
        }
      },
      "Hyak.Common/1.2.2": {
        "dependencies": {
          "NETStandard.Library": "2.0.3",
          "Newtonsoft.Json": "13.0.2",
          "System.Reflection": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.4/Hyak.Common.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.2.2.0"
          }
        }
      },
      "Microsoft.ApplicationInsights/2.13.1": {
        "dependencies": {
          "System.Diagnostics.DiagnosticSource": "4.6.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
            "assemblyVersion": "2.13.1.12554",
            "fileVersion": "2.13.1.12554"
          }
        }
      },
      "Microsoft.Azure.Common/2.2.1": {
        "dependencies": {
          "Hyak.Common": "1.2.2",
          "NETStandard.Library": "2.0.3"
        },
        "runtime": {
          "lib/netstandard1.4/Microsoft.Azure.Common.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.2.1.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Authentication.Abstractions/1.3.76-preview": {
        "dependencies": {
          "Hyak.Common": "1.2.2",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Authentication.Abstractions.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Aks/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Aks.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Authorization/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Authorization.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Compute/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Compute.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Graph.Rbac/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.ResourceManager": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Graph.Rbac.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.KeyVault/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.KeyVault.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Monitor/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2",
          "System.Collections.Specialized": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Monitor.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Network/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Network.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.PolicyInsights/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.PolicyInsights.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.ResourceManager/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.ResourceManager.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Storage.Management/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "System.Collections.NonGeneric": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Storage.Management.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Clients.Websites/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2",
          "System.Collections.Specialized": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Clients.Websites.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Common/1.3.76-preview": {
        "dependencies": {
          "Hyak.Common": "1.2.2",
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common.Share": "1.3.76-preview",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Common.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Common.Share/1.3.76-preview": {
        "dependencies": {
          "Hyak.Common": "1.2.2",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Common.Share.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Storage/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Rest.ClientRuntime": "2.3.24"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Storage.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Azure.PowerShell.Strategies/1.3.76-preview": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Azure.PowerShell.Strategies.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.3.76.0"
          }
        }
      },
      "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
        "dependencies": {
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "4.700.20.21406"
          }
        }
      },
      "Microsoft.CSharp/4.7.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "Microsoft.Identity.Client/4.49.1": {
        "dependencies": {
          "Microsoft.IdentityModel.Abstractions": "6.22.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Identity.Client.dll": {
            "assemblyVersion": "4.49.1.0",
            "fileVersion": "4.49.1.0"
          }
        }
      },
      "Microsoft.Identity.Client.Broker/4.46.0-preview": {
        "dependencies": {
          "Microsoft.Identity.Client": "4.49.1",
          "Microsoft.Identity.Client.NativeInterop": "0.9.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Identity.Client.Broker.dll": {
            "assemblyVersion": "4.46.0.0",
            "fileVersion": "4.46.0.0"
          }
        }
      },
      "Microsoft.Identity.Client.Extensions.Msal/2.23.0": {
        "dependencies": {
          "Microsoft.Identity.Client": "4.49.1",
          "System.IO.FileSystem.AccessControl": "5.0.0",
          "System.Security.Cryptography.ProtectedData": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
            "assemblyVersion": "2.23.0.0",
            "fileVersion": "2.23.0.0"
          }
        }
      },
      "Microsoft.Identity.Client.NativeInterop/0.9.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Identity.Client.NativeInterop.dll": {
            "assemblyVersion": "0.9.0.0",
            "fileVersion": "0.9.0.0"
          }
        }
      },
      "Microsoft.IdentityModel.Abstractions/6.22.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
            "assemblyVersion": "6.22.0.0",
            "fileVersion": "6.22.0.30727"
          }
        }
      },
      "Microsoft.NETCore.Platforms/1.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Rest.ClientRuntime/2.3.24": {
        "dependencies": {
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Rest.ClientRuntime.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.3.23.0"
          }
        }
      },
      "Microsoft.Rest.ClientRuntime.Azure/3.3.19": {
        "dependencies": {
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Rest.ClientRuntime.Azure.dll": {
            "assemblyVersion": "3.0.0.0",
            "fileVersion": "3.3.18.0"
          }
        }
      },
      "NETStandard.Library/2.0.3": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0"
        }
      },
      "Newtonsoft.Json/13.0.2": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "13.0.0.0",
            "fileVersion": "13.0.2.27524"
          }
        }
      },
      "PowerShellStandard.Library/5.1.0": {},
      "System.Buffers/4.5.1": {
        "runtime": {
          "lib/netstandard2.0/System.Buffers.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          }
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.NonGeneric/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Collections.Specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Collections.Specialized.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.6.0": {
        "dependencies": {
          "System.Memory": "4.5.4"
        },
        "runtime": {
          "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.19.46214"
          }
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem.AccessControl/5.0.0": {
        "dependencies": {
          "System.Buffers": "4.5.1",
          "System.Memory": "4.5.4",
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/System.Linq.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Memory/4.5.4": {
        "dependencies": {
          "System.Buffers": "4.5.1",
          "System.Numerics.Vectors": "4.5.0",
          "System.Runtime.CompilerServices.Unsafe": "4.7.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Memory.dll": {
            "assemblyVersion": "4.0.1.1",
            "fileVersion": "4.6.28619.1"
          }
        }
      },
      "System.Memory.Data/1.0.2": {
        "dependencies": {
          "System.Text.Encodings.Web": "4.7.2",
          "System.Text.Json": "4.7.2"
        },
        "runtime": {
          "lib/netstandard2.0/System.Memory.Data.dll": {
            "assemblyVersion": "1.0.2.0",
            "fileVersion": "1.0.221.20802"
          }
        }
      },
      "System.Numerics.Vectors/4.5.0": {
        "runtime": {
          "lib/netstandard2.0/System.Numerics.Vectors.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Emit.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.7.1": {
        "runtime": {
          "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.12001"
          }
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Security.AccessControl/5.0.0": {
        "dependencies": {
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.AccessControl.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Security.Cryptography.ProtectedData/4.7.0": {
        "dependencies": {
          "System.Memory": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Security.Permissions/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.Permissions.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Security.Principal.Windows/5.0.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.Encodings.Web/4.7.2": {
        "dependencies": {
          "System.Buffers": "4.5.1",
          "System.Memory": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
            "assemblyVersion": "4.0.5.1",
            "fileVersion": "4.700.21.11602"
          }
        }
      },
      "System.Text.Json/4.7.2": {
        "dependencies": {
          "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
          "System.Buffers": "4.5.1",
          "System.Memory": "4.5.4",
          "System.Numerics.Vectors": "4.5.0",
          "System.Runtime.CompilerServices.Unsafe": "4.7.1",
          "System.Text.Encodings.Web": "4.7.2",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/System.Text.Json.dll": {
            "assemblyVersion": "4.0.1.2",
            "fileVersion": "4.700.20.21406"
          }
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Threading.dll": {
            "assemblyVersion": "4.0.12.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {
        "dependencies": {
          "System.Runtime.CompilerServices.Unsafe": "4.7.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.28619.1"
          }
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Xml.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "System.Xml.XmlSerializer/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "4.0.12.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "Microsoft.Azure.PowerShell.AssemblyLoading/1.0.0": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Hyak.Common": "1.2.2",
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Aks": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Authorization": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Compute": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Graph.Rbac": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.KeyVault": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Monitor": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Network": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.PolicyInsights": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.ResourceManager": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Storage.Management": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Websites": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common.Share": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Storage": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Strategies": "1.3.76-preview",
          "Microsoft.CSharp": "4.7.0",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "Microsoft.Azure.PowerShell.AssemblyLoading.dll": {}
        }
      },
      "Microsoft.Azure.PowerShell.Authentication/1.0.0": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Azure.Identity": "1.6.1",
          "Azure.Identity.BrokeredAuthentication": "1.0.0-beta.3",
          "Hyak.Common": "1.2.2",
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Azure.PowerShell.AssemblyLoading": "1.0.0",
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Aks": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Authorization": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Compute": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Graph.Rbac": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.KeyVault": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Monitor": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Network": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.PolicyInsights": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.ResourceManager": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Storage.Management": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Websites": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common.Share": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Storage": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Strategies": "1.3.76-preview",
          "Microsoft.CSharp": "4.7.0",
          "Microsoft.Identity.Client": "4.49.1",
          "Microsoft.Identity.Client.Extensions.Msal": "2.23.0",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "Microsoft.Azure.PowerShell.Authentication.dll": {}
        }
      },
      "Microsoft.Azure.PowerShell.Authentication.ResourceManager/1.0.0": {
        "dependencies": {
          "Azure.Core": "1.31.0",
          "Hyak.Common": "1.2.2",
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Azure.Common": "2.2.1",
          "Microsoft.Azure.PowerShell.Authentication": "1.0.0",
          "Microsoft.Azure.PowerShell.Authentication.Abstractions": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Aks": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Authorization": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Compute": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Graph.Rbac": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.KeyVault": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Monitor": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Network": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.PolicyInsights": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.ResourceManager": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Storage.Management": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Clients.Websites": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Common.Share": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Storage": "1.3.76-preview",
          "Microsoft.Azure.PowerShell.Strategies": "1.3.76-preview",
          "Microsoft.CSharp": "4.7.0",
          "Microsoft.Rest.ClientRuntime": "2.3.24",
          "Microsoft.Rest.ClientRuntime.Azure": "3.3.19",
          "Newtonsoft.Json": "13.0.2"
        },
        "runtime": {
          "Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll": {}
        }
      },
      "Microsoft.Azure.PowerShell.Authenticators/1.0.0": {
        "dependencies": {
          "Microsoft.Azure.PowerShell.Authentication": "1.0.0"
        },
        "runtime": {
          "Microsoft.Azure.PowerShell.Authenticators.dll": {}
        }
      },
      "FuzzySharp/1.0.4.0": {
        "runtime": {
          "FuzzySharp.dll": {
            "assemblyVersion": "1.0.4.0",
            "fileVersion": "0.0.0.0"
          }
        }
      }
    }
  },
  "libraries": {
    "Microsoft.Azure.PowerShell.Cmdlets.Accounts/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Azure.Core/1.31.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YZlzaVS4XpPPIob934+UFfxvxMWe05PG3FDfwAXZz+MY+ShDJCjMokfrfh18F7VDW5tG0iMbPVjigeL6crGCiQ==",
      "path": "azure.core/1.31.0",
      "hashPath": "azure.core.1.31.0.nupkg.sha512"
    },
    "Azure.Identity/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jgN1EHSa/qDkIIM4fxc+2+1/cpNAE65JFGk2g6mXZgXpgLqvVA9kz31aa5bY0oqPrtUp+ZfaMieF2v7rs+WRBg==",
      "path": "azure.identity/1.6.1",
      "hashPath": "azure.identity.1.6.1.nupkg.sha512"
    },
    "Azure.Identity.BrokeredAuthentication/1.0.0-beta.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TPBTEpgmQ1kO48mOevubQNz8jjqTPkyT15Uv7xd8IGku3Q2pL2YV45H2+GvaglJKzr19w4p5e6oeGQS2UXggeg==",
      "path": "azure.identity.brokeredauthentication/1.0.0-beta.3",
      "hashPath": "azure.identity.brokeredauthentication.1.0.0-beta.3.nupkg.sha512"
    },
    "Hyak.Common/1.2.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uZpnFn48nSQwHcO0/GSBZ7ExaO0sTXKv8KariXXEWLaB4Q3AeQoprYG4WpKsCT0ByW3YffETivgc5rcH5RRDvQ==",
      "path": "hyak.common/1.2.2",
      "hashPath": "hyak.common.1.2.2.nupkg.sha512"
    },
    "Microsoft.ApplicationInsights/2.13.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BQhLmYR06Z8TVCdxnr8WOhhovJHtqYRNeB5gePBdQ4uDOE8D4IK9HW9i6a3llELz1QHv4HtFpku6dpXMGnO22g==",
      "path": "microsoft.applicationinsights/2.13.1",
      "hashPath": "microsoft.applicationinsights.2.13.1.nupkg.sha512"
    },
    "Microsoft.Azure.Common/2.2.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-abzRooh4ACKjzAKxRB6r+SHKW3d+IrLcgtVG81D+3kQU/OMjAZS1oDp9CDalhSbmxa84u0MHM5N+AKeTtKPoiw==",
      "path": "microsoft.azure.common/2.2.1",
      "hashPath": "microsoft.azure.common.2.2.1.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Authentication.Abstractions/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j56XVlXPWrR6MKEyNZNJpXwduXnYav3dBsUur9XZfu3YsF0ZswxgJRtrad3ZrtEfWY7ZWzTmTop7hFj/StN6yw==",
      "path": "microsoft.azure.powershell.authentication.abstractions/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.authentication.abstractions.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Aks/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BXf0H8/A4MfOU7Zu9YdtbR+u63SalBfqKUX8V1QdeVde6KG1R/PFyjQbM3EqrkJbLGcbIsqVmVSLycQ23U4OMA==",
      "path": "microsoft.azure.powershell.clients.aks/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.aks.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Authorization/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I393cpdOfXh1BA4W2CBGcAezT+xLUhfCMKbk2aSR4c/+yP/rBkrxNqAK9sS4FLeT4LkuIjj4worc2mtIt0hzyA==",
      "path": "microsoft.azure.powershell.clients.authorization/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.authorization.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Compute/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W/LLBDggFn6NR87OMf5dR5AheO8eqjWuHUcO6DA//tzT05B/ieKnzqf08+XZYSoYv/rulP+FbErn1GwCbe6vow==",
      "path": "microsoft.azure.powershell.clients.compute/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.compute.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Graph.Rbac/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-40bZKF87Z25UefUWQ1rnmGNEeeuShu94+nUfYMMBOrUX9649W53BmzJ/x3mNPHGBMGsdiFITdwBaMAhzpgNyWw==",
      "path": "microsoft.azure.powershell.clients.graph.rbac/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.graph.rbac.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.KeyVault/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oJGbGBlOK9M7VNpqm8TUT4u2ZTIcjLgVwJHw2J3431cuzh5SN37vdTe+vzACTr8C5YyJfBBmVCHPR/upWUohYA==",
      "path": "microsoft.azure.powershell.clients.keyvault/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.keyvault.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Monitor/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MtpZ6JuSVTfCVnJQJkGffjI/HrTs/4D/lzYwxyshfP0z62rlPifBNcwg9RtW5MVSmbGeOkf5A8tAbdwoZch9iA==",
      "path": "microsoft.azure.powershell.clients.monitor/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.monitor.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Network/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dpILYrSjIXufS3fRlHoE4V6Ii3iZZPWfqcgxYnXvbkvznaGrhLlI+vJw8jtR2X1X8tf1K5rzxJ5ibmxS+f03qw==",
      "path": "microsoft.azure.powershell.clients.network/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.network.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.PolicyInsights/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Sox/K/rvfSVntUoZ9FCJWIjZLgi3H0U9aCntNVUALQujvUofrPS/pzdC0bDEjTRHZovliWBRDcPyStxAX7BJsw==",
      "path": "microsoft.azure.powershell.clients.policyinsights/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.policyinsights.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.ResourceManager/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Fgu4TgoQo97JqCKPg4xbMV7ZgNU3hiK8l0681SG4K8w+6Olxwg/aCZ/c8sjQK3/z9nXZHdyP7pV6zeT6fogPYg==",
      "path": "microsoft.azure.powershell.clients.resourcemanager/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.resourcemanager.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Storage.Management/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/fLebBi0pO9Lz/UiKj3sGvZpQOwOWZ+mEkFsO+NGnJ6Fp814mvvXDPfodNVSLjS9kgawgFkK205XNFv1v1ft+A==",
      "path": "microsoft.azure.powershell.clients.storage.management/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.storage.management.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Clients.Websites/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-37fB/ShVJ4J641zUnrNXMwzC+wYz5qqtAKXfyKa5onh27hUcPraRagTlfhdq+2kR6s4Oxx0FeNGFgm2reSYtAw==",
      "path": "microsoft.azure.powershell.clients.websites/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.clients.websites.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Common/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ExCet9jX736Ky8z54xxHxMvj++BSrttGKTigF4e7paq2emIr2NfxJAEfMI/saiWNFtWfE1lx1ulmj6VWlV/g7A==",
      "path": "microsoft.azure.powershell.common/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.common.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Common.Share/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oFvOKotrXxonseOytnOnOqyfeZQAw5vwvzuOW7gEgogI8cVCvoYPLUHp26kTzWbF6+O4pY7aAEHQHxgIa4XslQ==",
      "path": "microsoft.azure.powershell.common.share/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.common.share.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Storage/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/HjFnrmvmjKSJ4Io2v1DmTfBi/Xaqqr6FzGvKXA64mkpDovVE4KPi5QcjySfxl+6jlIklm/Dal5f7ybJs/WsFQ==",
      "path": "microsoft.azure.powershell.storage/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.storage.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.Strategies/1.3.76-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UeP2PzX2wSBD89LJnkYYceZD9TwUQ/FgfcNKCSRDDL8U1PrXGDPdAsbyehoDz/FtTCxVyG/HacHuXX4eBiO9Qg==",
      "path": "microsoft.azure.powershell.strategies/1.3.76-preview",
      "hashPath": "microsoft.azure.powershell.strategies.1.3.76-preview.nupkg.sha512"
    },
    "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
      "path": "microsoft.bcl.asyncinterfaces/1.1.1",
      "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512"
    },
    "Microsoft.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
      "path": "microsoft.csharp/4.7.0",
      "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.Identity.Client/4.49.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vDU3cdXIom4+pxJk8sDJcHYTHPhb6DSVF9zjFY61SoQVs1OxbHZY9+mBnq1gGkG7N/o04WTt42IdV/0gf1+5DA==",
      "path": "microsoft.identity.client/4.49.1",
      "hashPath": "microsoft.identity.client.4.49.1.nupkg.sha512"
    },
    "Microsoft.Identity.Client.Broker/4.46.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h8MA9PB2p5IKZCqh3KDeIexTfhcWhRKsYoJ7IzQ8LcFFX1wWvfY3HBHB7d29NuzsJtmZBWzmmhOvJUMo8lanIQ==",
      "path": "microsoft.identity.client.broker/4.46.0-preview",
      "hashPath": "microsoft.identity.client.broker.4.46.0-preview.nupkg.sha512"
    },
    "Microsoft.Identity.Client.Extensions.Msal/2.23.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Q8K58FjUIVslHQlk+SIhFYjdy8B1A5Wt3GXxzLS7lnXXaSmbcGzk7d8haqLmR8z/DP99vpZC73SxMa83qSHcbQ==",
      "path": "microsoft.identity.client.extensions.msal/2.23.0",
      "hashPath": "microsoft.identity.client.extensions.msal.2.23.0.nupkg.sha512"
    },
    "Microsoft.Identity.Client.NativeInterop/0.9.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+YInui86hGpOZ2NF0Gg6ij4ib9v35Sc8GdiKWtiQdm9Yd3PYcEmh13ll306gN4vkuG/iWuY6MenClX/OlxVf4Q==",
      "path": "microsoft.identity.client.nativeinterop/0.9.0",
      "hashPath": "microsoft.identity.client.nativeinterop.0.9.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Abstractions/6.22.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
      "path": "microsoft.identitymodel.abstractions/6.22.0",
      "hashPath": "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "Microsoft.Rest.ClientRuntime/2.3.24": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hZH7XgM3eV2jFrnq7Yf0nBD4WVXQzDrer2gEY7HMNiwio2hwDsTHO6LWuueNQAfRpNp4W7mKxcXpwXUiuVIlYw==",
      "path": "microsoft.rest.clientruntime/2.3.24",
      "hashPath": "microsoft.rest.clientruntime.2.3.24.nupkg.sha512"
    },
    "Microsoft.Rest.ClientRuntime.Azure/3.3.19": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+NVBWvRXNwaAPTZUxjUlQggsrf3X0GbiRoxYfgc3kG9E55ZxZxvZPT3nIfC4DNqzGSXUEvmLbckdXgBBzGdUaA==",
      "path": "microsoft.rest.clientruntime.azure/3.3.19",
      "hashPath": "microsoft.rest.clientruntime.azure.3.3.19.nupkg.sha512"
    },
    "NETStandard.Library/2.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
      "path": "netstandard.library/2.0.3",
      "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json/13.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
      "path": "newtonsoft.json/13.0.2",
      "hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
    },
    "PowerShellStandard.Library/5.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iYaRvQsM1fow9h3uEmio+2m2VXfulgI16AYHaTZ8Sf7erGe27Qc8w/h6QL5UPuwv1aXR40QfzMEwcCeiYJp2cw==",
      "path": "powershellstandard.library/5.1.0",
      "hashPath": "powershellstandard.library.5.1.0.nupkg.sha512"
    },
    "System.Buffers/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
      "path": "system.buffers/4.5.1",
      "hashPath": "system.buffers.4.5.1.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.NonGeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "System.Collections.Specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
      "path": "system.diagnostics.diagnosticsource/4.6.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
      "path": "system.io.filesystem.accesscontrol/5.0.0",
      "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Memory/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
      "path": "system.memory/4.5.4",
      "hashPath": "system.memory.4.5.4.nupkg.sha512"
    },
    "System.Memory.Data/1.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
      "path": "system.memory.data/1.0.2",
      "hashPath": "system.memory.data.1.0.2.nupkg.sha512"
    },
    "System.Numerics.Vectors/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
      "path": "system.numerics.vectors/4.5.0",
      "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/4.7.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
      "path": "system.runtime.compilerservices.unsafe/4.7.1",
      "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
      "path": "system.security.accesscontrol/5.0.0",
      "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
      "path": "system.security.cryptography.protecteddata/4.7.0",
      "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
    },
    "System.Security.Permissions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
      "path": "system.security.permissions/4.7.0",
      "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
      "path": "system.security.principal.windows/5.0.0",
      "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
    },
    "System.Security.SecureString/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
      "path": "system.security.securestring/4.3.0",
      "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.Encodings.Web/4.7.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==",
      "path": "system.text.encodings.web/4.7.2",
      "hashPath": "system.text.encodings.web.4.7.2.nupkg.sha512"
    },
    "System.Text.Json/4.7.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
      "path": "system.text.json/4.7.2",
      "hashPath": "system.text.json.4.7.2.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlSerializer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
      "path": "system.xml.xmlserializer/4.3.0",
      "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
    },
    "Microsoft.Azure.PowerShell.AssemblyLoading/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Azure.PowerShell.Authentication/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Azure.PowerShell.Authentication.ResourceManager/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Azure.PowerShell.Authenticators/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "FuzzySharp/1.0.4.0": {
      "type": "reference",
      "serviceable": false,
      "sha512": ""
    }
  }
}